Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

I am getting an error regarding test 14. I’ve compared the line to how it should look manually typed, I copy and pasted the format so I can modify the spacing and formula without touching the words, and I’ve verified all the spacing should be where it is. On top of that, tests 15 & 16 pass, so I don’t know what I’m doing wrong.

Your code so far

let adjective = ("arrogant");
let noun = ("punk");
let verb = ("discussed");
let place = ("office");
let adjective2 = ("deep");
let noun2 = ("chili");
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 (X11; Linux x86_64; rv:144.0) Gecko/20100101 Firefox/144.0

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

try removing the unnecessary parentheses

let adjective = "arrogant";
let noun = "punk";
let verb = "discussed";
let place = "office";
let adjective2 = "deep";
let noun2 = "chili";
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("First story: " + firstStory);

Same issue

leave a(n) as is, use the given sentence exactly as written

let adjective = "arrogant";
let noun = "punk";
let verb = "discussed";
let place = "office";
let adjective2 = "deep";
let noun2 = "chili";
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);

That’ll do it, thank you!