It's important to know which index the value we want is located at, otherwise we might get some surprising results.

Let's try accessing the last element in this array. 

Great! Each value in an array has a corresponding index number.

Remember the first element is at index [0], as there are four elements in total, we need to use [3] to access the last one.