Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

I am told I am using the wrong format. For the last 90 minutes I tried to figure out what is wrong with my format - with no result.

Your code so far

let adjective;
let noun;
let verb;
let place;
let adjective2;
let noun2;
adjective = "big";
noun = "Sidi";
verb = 'eating';
place = "mountain";
adjective2 = "enormous";
noun2 = 'Salsice';
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 + '.';
console.log(firstStory);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

isn’t there something in the provided format here, like a (n) that here is missing?