Hi. I have this table/array
I got inspiration from: https://coronalabs.com/blog/2011/06/21/understanding-lua-tables-in-corona-sdk/
But I keep getting an error: Main.lua:17 ‘=’ expected near ‘textString’
line 17 is about text 3 or 4.
I tried different ways from the inspirationssite, but I keep getting the error.
Local textString = {
[1] = “text 1”
[2] = “text 2”
[3] = “text 3”
[4] = “text 4”
[5] = “text 5”
[6] = “text 6”
[7] = “text 7”
[8] = “text 8”
[9] = “text 9”
[10] = “text 10”
[11] = “text 11”
[12] = “text 12”
[13] = “text 13”
[14] = “text 14”
}