Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

steps 8 and 15 won’t pass, but i don’t know why…

Your code so far

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

let botName;
botName = "Henkie ";
let botLocation;
botLocation = "your screen";
let favoriteLanguage;
favoriteLanguage = "JavaScript";
let codingFact;
codingFact = favoriteLanguage + " is considered the easiest programming language.";


console.log("My name is " + botName + "and i live on " + botLocation + ".");
console.log("My favorite programming language is " + favoriteLanguage + ".")
console.log(codingFact);
codingFact = favoriteLanguage + " is easy to learn.";
console.log(codingFact);
codingFact = favoriteLanguage + " is difficult to master.";
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

Don’t declare and assign on two lines like this. Just do it on one line.