1. What do arrays allow us to do?
An array can store multiple separate pieces of data in the same variable and can be indexed as follows eg.
x[0] x[1] x[2]
Arrays are useful in loops as the index notification can be easily incremented to move through the data.