Tell us what’s happening:
Hello,
I am stucked in point 13. I have examined my code and seems nothing wrong but still fail:
let adjective = “handsome”;
let noun = “man”;
let verb = “take”;
let place = “Seattle”;
let adjective2 = “black”;
let noun2 = “apple”;
let firstStory;
firstStory = "Once upon a time, there was a " + adjective + " " + noun + " who loved to eat " + noun2 + ". The " + noun + " lived in a " + place + " and had " + adjective2 + " nostrils that blew fire when it was " + verb + “.”;
Your code so far
let adjective = "handsome";
let noun = "man";
let verb = "take";
let place = "Seattle";
let adjective2 = "black";
let noun2 = "apple";
let firstStory;
firstStory = "Once upon a time, there was a " + adjective + " " + noun + " who loved to eat " + noun2 + ". The " + noun + " lived in a " + place + " and had " + adjective2 + " nostrils that blew fire when it was " + verb + ".";
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0
Challenge Information:
Build a Sentence Maker - Build a Sentence Maker