Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

Hi, I can’t get test #14 to pass and have been troubleshooting for the past hour, please help!

Your code so far

let adjective = "blue"
let noun = "man"
let verb = "eat"
let place = "Mexico"
let adjective2 = "friendly"
let noun2 = "burritos"

let 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)

Your browser information:

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

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

double check, you have two consecutive space characters at one point in firstStory, you should have only one space character there

Thanks, that’s a tricky one because when I grew up 2 spaces after a sentence was standard grammar but apparently it’s only 1 space now, thanks for the tip, I fixed it.