"""Exercise 20.11.1 — Reading the last color

Chapter 20: Common Pitfalls — Everyday Programming

This program should print the last color in the list.

This program contains exactly one bug. Solution: sol_20_11_1.py
"""

colors = ["red", "green", "blue"]
print(colors[3])
