We can use indices to access specific values of a list. We just need to add the name of the list and the value between brackets.

Let's complete this code snippet that displays the beginning, middle, and end values of a list.

Awesome! See how we've displayed the values at positions 0, 2, and 4? All through the index alone.

Make sure to start with values, an opening bracket, the index, and then add the closing bracket.