Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

Please help me out. I m a beginner and I m facing issue here. I m not able to find the error in my code. Please help.

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
let botName = "Bot";
let botLocation = "Spark";
let favoriteLanguage = "Binary";

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

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

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

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

favoriteLanguage = "Quadnary";
codingFact = "My favorite programming language is " + favoriteLanguage + ".";
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/134.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Can you describe the problem a bit more?

Do you get any errors or hint messages?

What is output and how is it different from the desired output?

What have you tried to correct it?

The instructions never ask to change the favoriteLanguage variable.

You should reassign the codingFact variable to a new fact about the bot’s favorite language using the favoriteLanguage variable again.

Give a fact about the Binary coding language.