Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

Please someone help me I cant figure out what is wrong with my code.

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
let botName = "Arthur ";
let botLocation = "Cebu City ";
let favoriteLanguage = "JavaScript ";
console.log("My name is " + botName + "and I live on " + botLocation);
console.log("My favorite programming language is " + favoriteLanguage);
let codingFact = "It is fun using " + favoriteLanguage;
console.log(codingFact);
codingFact = "Im Happy playing It " + 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/136.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Welcome back to the forum @

Try removing the white spaces at the end of the variables you created for botName and botLocation

Make sure you have single spaces in the console.log()
Check the puntucation.

Happy coding