Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

I don’t understand why error in 15 item, what am i supposed to do?

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
const botName = "huesos";
const botLocation = "Huesos land";
const favoriteLanguage = "JS";
console.log("My name is " + botName + " and I live on " + botLocation + ".");
console.log("My favorite programming language is " + favoriteLanguage + ".");
let codingFact = (favoriteLanguage + " There are More than 700 Coding Languages.");
console.log (codingFact);
codingFact = (favoriteLanguage + " The Daughter of a Mad Poet was the First Programmer.");
console.log(codingFact);
codingFact = (favoriteLanguage + " Coding Depends on 0's and 1's.");
console.log(codingFact);
console.log(codingFact);
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/135.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

you have two identical lines right above, maybe having those two is causing confusion for the tests