Idea Generator Project

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
Demo

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
var verbIndex = Math.floor(Math.random() * myVerbList.length);