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 an array of adjectives and an array 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.
int verbIndex = (int)(Math.random() * myVerbList.length);