Array
An array stores its values in a specific order. Each value has an index that defines its position within the array and you can use them to select which element you want to access or display.
Indexes always start at 0! For example, given an array with the integer
values [12, 23, 34, 45, 56]: Selecting index 0 returns the value 12.
While selecting index 4 returns the value 56.
