"""Exercise 20.10.2 — Recording a new score

Chapter 20: Common Pitfalls — Everyday Programming

This program should store a new game score after the existing three.

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

scores = [10, 15, 20]
scores[3] = 25
print(scores)
