Indexing Array Elements
Values of individual elements can be found by indexing into the array. In our example, array [0] is equal to 5 and array [3] is equal to 9.
The integer in square brackets is called the subscript.
The subscript could also be an expression that evaluates to an integer.
In our example, array is the name of the array.