Idea Generator
Your are trying to come up with a name for your new restaurant; write a program that generates a restaurant name by combining a random adjective with a random noun. Have a list of adjectives and a list of nouns to randomly select from. Display the idea, preceded by "The".
Possible output:
The Purple Blender
Hint: Code for generating random number within array bounds.
import random
verbIndex = int( random.random() * len(myVerbList) )