Tell us what’s happening:
The " + noun + " lived in a " + place + " and had " +
adjective2 + " nostrils that blew fire when it was " + verb + “.”;
console.log("First story: "+ firstStory);
adjective = “lazy”;
noun = “pony”;
verb = “jump”;
place = “earth”;
adjective2 = “slowly”;
// running tests
15. You should assemble your first story using the variables you declared in the correct order.
25. You should assemble your second story using the variables you declared in the correct order.
// tests completed
// console outp
Your code so far
let adjective = "crazy";
let noun = "bird";
let verb = "run";
let place = "school";
let adjective2 = "boring";
let noun2 = "lion";
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 = "lazy";
noun = "pony";
verb = "jump";
place = "earth";
adjective2 = "slowly";
noun2 = "fish";
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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36
Challenge Information:
Build a Sentence Maker - Build a Sentence Maker