Tell us what’s happening:
It keeps saying that I need to check the spaces, what am I missing?
Your code so far
let adjective = "cute";
let noun = "cat";
let verb = "running";
let place = "mountain";
let adjective2 = "beautiful"
let noun2 = "dogs";
let firstStory;
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)
adjective = "sticky";
noun = "apple";
verb = "falling";
place = "church";
noun2 = "cars";
let secondStory;
secondStory = "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("Second story : " + secondStory);
Your browser information:
User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 16_7_16 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.7 Mobile/15E148 Safari/604.1 OPT/6.6.2
Challenge Information:
Build a Sentence Maker - Build a Sentence Maker