Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

step8!!!
hellllllp

Your code so far

  console.log("Hello! I'm your coding fun fact guide!")
let botName ;
botName= "man"
console.log(botName);
let botLocation;
botLocation= "Usa";
console.log(botLocation);
let favoriteLanguage;
favoriteLanguage= "english"
console.log(favoriteLanguage);
console.log("My name is " + botName + "and I live on " + botLocation + ".")

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:145.0) Gecko/20100101 Firefox/145.0

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

what help do you need?

Welcome to the forum @stalkerpapsi

Check for spacing in the last console log.

Then, remove the console logs for the variables. You were not asked to do that.

If that doesn’t work, try initialising and declaring the variables on the same line.

Happy coding