The last number has an index of -1, so I will select elements up to -1.
>>> numbers[:-1] ['First', 'Second', 'Third']
Do you also see a smiley face in the code for selecting everything except the last element?