The index is sort of like an address for list elements. Just as each variable has a certain name, each element has a certain index.

We can access items in the list by including their index number after the list name in brackets.

Good! The index starts counting from the first element at 0.

Psst: we can use negative indices as well. -1 takes the last element of the list.

Not quite! Maybe there's a different way of accessing list elements?