Tell us what’s happening:
i cant seem to get past this specific error/task that its asking me to correct " You should use the correct story format for the first story: “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].”. Pay attention to spaces."
Your code so far
let adjective = 'strong';
let noun = 'man';
let verb = 'running';
let place = 'home';
let adjective2 = 'huge';
let noun2 = 'bear';
let firstStory = ' Once upong 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);
adjective = 'short';
noun = 'bunny';
verb = 'hopping';
place = 'forest';
adjective2 = 'tired';
noun2 = 'snail';
const secondStory = ' He then saw a(n) ' + adjective + ' ' + noun + ' get very ' + adjective2 + ' from doing laps around a(n) ' + noun2 + '. The ' + noun + ' then started ' + verb + ' deep into the ' + place + ' as the sun started to set.';
console.log('Second story: ' + secondStory);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36
Challenge Information:
Build a Sentence Maker - Build a Sentence Maker