Lava Example - 35
Prompt
Use the {{ list }} array again, but this time just get the first item.
Then get the last item.
Then get the third item.
Initial Code
{{ list }}
Solution Lava
<p>{{ list | First }}</p>
<p>{{ list | Last }}</p>
<p>{{ list[2] }}</p>