Tell us what’s happening:
I don’t no why am not passing stage 23
Your code so far
let adjective = "Brilliant";
let noun = "Developer";
let verb = "baking";
let place = "quiant bakery";
let adjective2 = "fiery";
let noun2 = "Pastries";
const 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 = "brilliant";
noun = "Code Blvck";
verb = "coding";
place = "coffee shop";
adjective2 = "friendly";
noun2 = "pastry";
const secondStory = "Once upon a time, there was a " + adjective + " " + noun + " who loved to eat " + noun2 + ". " + noun + " lived in a cozy " + place + " and had " + adjective2 + " friends who supported him when he was " + verb + ".";
console.log("Second story: " + secondStory);
Your browser information:
User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36
Challenge Information:
Build a Sentence Maker - Build a Sentence Maker