Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

everything is turning into an error after the 11th story.

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
let botName = "nitin";
let botLocation = "home";
let favoriteLanguage = "js";
console.log("My name is " + botName + " and I live on " + botLocation + ".");
console.log("My favorite programming language is " + favoriteLanguage + ".");
let codingFact = "cool";
console.log(codingFact);
let codingFact = " websites are made using " + favoriteLanguage + ".";
console.log(codingFact); 



Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/151.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 @bvnitin7,

You should use let to create a codingFact variable and assign it a string that is a fun fact about the bot’s favorite programming language, using the favoriteLanguage variable.

Have you implemented User Story #5 exactly as asked?

Happy coding

remember what you learned about variables and let, is this allowed?