Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

I have written every line of code correctly as per the instructions given but am still been told there are errors. Where is the error?

Your code so far


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

let botName = "Dewordexpert";
let botLocation = "Dansoman";
let favoriteLanguage = "JavaScript";

console.log("My name is " + botName + "."); 

console.log("And i live on "+ botLocation + ".");

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

let codingFact = "Coding with " + favoriteLanguage +  " is just lovely and simple.";
console.log(codingFact);

codingFact = "I always say that " +favoriteLanguage+ " is the best programing language for website development";
console.log(codingFact);

codingFact = "John sad that "+favoriteLanguage+ " is used to build stylish and dynamic web applications.";
console.log(codingFact);

codingFact = "If you have never tried " + favoriteLanguage + " before,then you are missing out";
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 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

What is your first failing test when you run the tests?