When we want to get a value from an array, we use the array name followed by the index of the value we want in brackets.

Can you retrieve the second value from this array?

Pretty slick. As arrays begin with the index [0], to access the second value we use the array name followed by [1].

Close! Arrays start at an index [0], so to get the second value we need access the value at index [1].