Oh no! This code is trying to print the last color in the list, but it's using the wrong index and will crash with an error.
Fix the code so it correctly prints "green", the last item in the list.
Hint: Remember that list indexes start at 0!
💡 Hints
?Hint 1
🔒Hint 2
🔒Hint 3
python
colors = ["red", "blue", "green"]
print(colors[3])