An array of values.
Array's are a simple sequence of values starting at index
0.
Array's don't have to contain the same type of value
a = [ "text", 6, 9.3 ]
Arrays can be accessed using
a[index].
Values can be replaced using
a[index] = value.
Arrays can be defined using
a = [1,2,3,4,5] local a = [1,2,3,4,5,6,7,8,9,0]
local names = [ "Ted", "Betty", "Delores", null ]
local board = [[1,2,3],[4,5,6],[7,8,9]]
local piece = board[2][1]