Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

It says " You should use the correct story format for the second 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 = "happy";
let noun = "hazel";
let verb = "eating"; 
let place = "albertos";
let adjective2= "many";
let noun2 = "pizza";
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 + " nostrils that blew fire when it was " + verb + ".";

console.log("First story: " + firstStory);
adjective = "beautiful";
noun = "husband";
verb = "hug";
place = "room";
adjective2 = "lovely";
noun2 = "oranges"; 
const secondStory = "As a happily married husband, I have a(n) " + adjective + " " + noun + " that loves so much to eat " + noun2 + ". My " + noun + " Lives with me near " + place + " and she has a " + adjective2 + " smile and whenever i see her I like to " + verb + " her.";
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/147.0.0.0 Safari/537.36 Edg/147.0.0.0

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

Do not change the sentence structure or words like “nostrils that blew fire.” Only swap the bracketed placeholders with variables containing matching word types (adjective, noun, verb, etc.).

i did not change the sentence structure