its saying objective number 23 is wrong it says i dont have the right format for story number 2
Your code so far
let adjective = "beautiful";
let noun = "rabbit";
let verb = "angered";
let place = "garden";
let adjective2 = "big";
let noun2 = "lettuce";
let firstStory = "Once upon a time, there was a(n) beautiful rabbit who loved to eat lettuce. The rabbit lived in a garden and had big nostrils that blew fire when it was angered.";
console.log("First story: " + firstStory);
adjective = "small";
noun = "fish";
verb = "frighetened";
place = "pond";
adjective2 = "curved";
noun2 = "seaweed";
const secondStory = "Once upon a time there was a(n) small fish who loved to eat seaweed. The fish lived in a pond and had curved nostrils that blew fire when it was frightened.";
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/139.0.0.0 Safari/537.36
let firstStory = “Once upon a time, there was a(n) beautiful rabbit who loved to eat lettuce. The rabbit lived in a garden and had big nostrils that blew fire when it was angered.”;
console.log("First story: " + firstStory);
adjective = “small”;
noun = “fish”;
verb = “poked”;
place = “pond”;
adjective2 = “curved”;
noun2 = “seaweed”;
const secondStory = “Once upon a time, there was a(n) small fish who loved to eat seaweed. The fish lived in a pondand had curved nostrils that blew fire when it was poked.”;