var 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 = (“Smith”);
verb = (“bored”);
place = (“Detroit”);
adjective2 = (“violent”);
noun2 = (“humans”);
var secondStory = (“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("Second story: " + secondStory);
I tried looking at other people’s submissions to see if anyone had the same problem as me, and someone did have a similar problem but I still couldn’t figure it out.
let adjective = ("hungry");
let noun = ("James");
let verb = ("approached");
let place = ("cabinet");
let adjective2 = ("moving");
let noun2 = ("demon");
var 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 = ("Smith");
verb = ("bored");
place = ("Detroit");
adjective2 = ("violent");
noun2 = ("humans");
var secondStory = "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("Second story: " + secondStory);
Alright I did it, I found that error in the second strip, and it did fix the second story, but it still says the same thing for the first story, even after putting the second story code into the first story and double checking everything.