Fortune Teller

# FortuneTeller.py
#
import random

fortunes = [
    "You will win the lottery",
    "You will fall down the stairs",
    "You will make a million dollars",
    "You will fail math",
    "You will get a new puppy"
]

print("Here is your fortune:")
pick = random.randrange(len(fortunes))

print("  ", fortunes[pick])