Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

codingFact = “Also, " + favoriteLanguage + " is the most popular programming language in the world.”;

esto genera error y aun no entiendo por que es el paso 14

Your code so far


console.log("Hello! I'm your coding fun fact guide!");

let botName;
botName = "David";
let botLocation;
botLocation = "Colombia";
let favoriteLanguage;
favoriteLanguage = "Java"


console.log("My name is " + botName + " and I live on " + botLocation + ".");

console.log("My favorite programming language is " + favoriteLanguage + ".");

let codingFact;
codingFact = "My favorite programming language is " + favoriteLanguage + ".";
console.log(codingFact);



codingFact = "Also, " + favoriteLanguage + " is the most popular programming language in the world.";

console.log("It was fun sharing these facts with you. Goodbye! -" + botName + " from: " + botLocation + ".");



Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-javascript-trivia-bot/66ed41f912d0bb1dc62da5dd.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @Davitz,

It looks like you still need to implement User Stories #8-10.

Happy coding

are you sure you should do this?