Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

My let variables keep doing error. Ex. “1. You should declare an adjective variable.” It’s doing this 1-13 when running tests.

Your code so far

let adjective;
let noun;
let verb;
let place;
let adjective2;
let noun2;
adjective = "sad";
noun = "dog";
verb = "ate";
place = "Italy";
adjective2 = "mad";
noun2 = "cat";
let firstStory;
firstStory = "Once upon a time, there was a(n) " + adjective + " " + noun + " who loved to eat " + noun2 + "." + "The " + noun + " lived in a " + place + " and had " + adjective2 + " nostrils that blew fire when it was " + verb + ".";
console.log("First story: " + firstStory);
adjective = "angry";
noun = "sam";
verb = "run";
place = "Greece";
adjective2 = "happy";
noun2 = "greg";
let secondStory;
secondStory = "One upon a time, there was a(n) " + adjective + noun + " who loved to eat " + noun2 + "." + "The " + noun + " lived in a " + place + " and had " + adjective2 + "nostrils that blew fire when it was " + verb ".";
console.log("Second story: " + secondStory)

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

Aren’t you seeing a syntax error in the console?