' Declare and initialize an integer array
Dim intArray(5) As Int ' <==== Range 0 - 4
intArray = Array As Int(1, 2, 3, 4, 5)
' Access array elements
Log(intArray(0)) ' Outputs: 1
Log(intArray(4)) ' Outputs: 5
' Request 5 is greater then end range 4
Log(intArray(5)) ' Outputs: Error because the requested value is outside the specified range