Tell us what’s happening:
I don’t see any spacing errors or spelling errors. Please help!
Your code so far
let adjective = "skinny";
let noun = "dog";
let verb = "eaten";
let place = "shelter";
let adjective2 = "fat";
let noun2 = "cat";
const 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("First story: " + firstStory);
adjective = "fast";
noun = "robot";
verb = "ran";
place = "house";
adjective2 = "naughty";
noun2 = "airpods";
const secondStory = "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("Second story: " + secondStory);
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36
Challenge Information:
Build a Sentence Maker - Build a Sentence Maker