"""Solution 5.6.1 — First fruit

Chapter 5: Data Structures — Everyday Programming

Bug type: Logical

List indexing starts at 0, so fruits[1] is "banana". Use index 0 for the
first fruit.

Exercise: ex_5_6_1.py
"""

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