Tell us what’s happening
I keep getting stuck at step 14 and 26 consequently, im being told there is something wrong with my string code and to pay attention to spaces but it have doen exactly as what has been directed
Your code so far
let adjective ="up";
let noun = "Kileleshwa";
let verb = "moving";
let place = "is";
let adjective2 = "down";
let noun2 = "Quit";
let firstStory = "Once upon a time, there was an "+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(firstStory);
adjective ="Ogre";
noun = "Bob";
verb = "hungry";
place = "The Forest";
adjective2 = "big ass";
noun2 = "meat";
let secondStory = "Once upon a time, there was an "+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 (secondStory);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/151.0.0.0 Safari/537.36
Challenge Information:
Build a Sentence Maker - Build a Sentence Maker