Build a Sentence Maker - Build a Sentence Maker

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

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-sentence-maker/66c057041df6394ca796bf33.md at main · freeCodeCamp/freeCodeCamp · GitHub

make sure to match the given format exactly, here there is a difference

make sure to print the exact given format

What is the difference ? i can not pin point it

So basically, the challenge tester is a bit tricky: you have to write down exactly wat was ordered (you cannot forget any character). There’s a difference between the text you wrote and the text you should have written, in this section.

is not the same as the actual text that you have been given. (even 1 or 2 characters will make the tests fail!)

there was a(n) is the expected text