Arrays
An array is a series of variables, which is referred to with the same name using a number, called an index, to reference individual elements.
The lower bound of an array is 0, and the upper bound is the amount of elements in the array less one.
The range of an array is 0 to N-1, N being the amount of elements in the array.