Tell us what’s happening:
I have made multiple iterations to the code submitted for instructions 14. But I have been unable to spot any minor to major syntax issues and have been able to establish how the code keeps coming up wrong. Please assist me with this issue.
Your code so far
let adjective = "happy";
let noun = "Miragirl";
let verb = "celebrating";
let place = "Castle";
let adjective2 = "glowing";
let noun2 = "cookies";
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 + " nostrills that blew fire when it was " + verb + ".";
console.log("First story: " + firstStory);
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.3 Safari/605.1.15
Challenge Information:
Build a Sentence Maker - Build a Sentence Maker