"""Exercise 5.6.2 — Adding an item

Chapter 5: Data Structures — Everyday Programming

The program should add "grape" to the list and print 4 items in total.

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

fruits = ["apple", "banana", "orange"]
fruits.add("grape")
print(len(fruits))   # 4
