write array lua code example
Example 1: where do lua tables start
tbl = {"yes"}
tbl[1]
-- Arrays/Tables start at 1
Example 2: how to make a table in lua
--You need to use this {} and put them in a varible
local Table = {13,"1hihihi",
-- u can even do tis
{122,222}}