An Array is a big box that holds a list of items of the same kind. Every spot in the list has a number, starting from 0. You use [ ] brackets.
Import arrays.Number[] luckyNumbers = [7, 14, 21].Displaynl(luckyNumbers[0]).luckyNumbers[1] = 99.Sentence[] pets = ["Dog", "Cat", "Bird"].
You can even put lists inside other lists. It works like rows and columns in a spreadsheet. This is called a 2D Array.
Import arrays.Number[][] grid = New Number[2][3].grid[0][0] = 5.grid[1][2] = 10.Displaynl(arrays.Length(grid)).