# make all of the functions in the "random" module available to this program import random # pick a random integer between 1 and 3 num = random.randint(1, 3) # now turn this number into a color if num == 1: color = "red" elif num == 2: color = "blue" else: color = "yellow" # output - note that this will change every time you run the program! print ("My favorite color today is:", color)