Returns the element at the specified position in the array.
x[y] -> Returns the y th element from the array x.
x[y to z] -> Returns the y to z range from the array x.
Depends on the usage (see above).
[4,2,1][3] -> Returns 1.