Idea Generator

You 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. The output may look like this:

The Purple Blender

Requirements

  • Have an array of adjectives and an array of nouns to randomly select from.
  • Display the idea, preceded by "The".

Hints

Code for generating random number within array bounds.
int verbIndex = (int)(Math.random() * myVerbList.length);