"""Exercise 5.6.1 — First fruit

Chapter 5: Data Structures — Everyday Programming

The program should print the first fruit in the list: "apple".

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

fruits = ["apple", "banana", "orange"]
print(fruits[1])   # apple
