Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

everything except step 8 is passing. I dont know why

Your code so far

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

let botName = "Barry";
let botLocation = "your screen";
let favoriteLanguage = "JavaScript";

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

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

let codingFact = favoriteLanguage + " is easy to learn.";

console.log(codingFact);

codingFact = favoriteLanguage + " is hard to master.";

console.log(codingFact);

codingFact = favoriteLanguage + " is considered the easiest programming language.";

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 need to match exactly the given text, you have a difference

hi,
Check for spaces, lower case and uppercase in the given text.

Happy coding