What is wrong with this coding:
Script Mad Lib: ReferenceError: noun1 is not defined ( @ 19 : 68 ) - cles as well as " + verb + " . This increases that rate of your " + noun1 + "
Here is my entire coding:
// get name from service, name is entered in the app
var adjective = request.get("verbing");
var vegetable = request.get("adjective");
var verb = request.get("noun");
var adjective2 = request.get("verb");
var vegetable = request.get("noun1");
var verbing = request.get("noun2");
var verbing1 = request.get("animal");
var noun = request.get("noun3");
var adjective3 = request.get("verb1");
var number = request.get("adjective1");
var verb2 = request.get("color");
// put together the mad lib string
var greetingString = " Most doctors agree that bicyle " + verbing + " is a" + adjective + " form of excerise. Using a bicyle enables you to develop your " + noun + " musc cles as well as " + verb + " . This increases that rate of your " + noun1 + " beat. More " + noun2 + " drive " + animal + ". No matter what kind of " + noun3 + " you " + verb1 + ", always be sure to wear a " + adjective1 + " helmet. Make sure to have " + color + " reflectors too! ";
// format as JSON and return the response
response.success(JSON.stringify({
greeting: greetingString
}), "application/json");