Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

no matter what i do I 'm not passing step 8,11,14,15 and I think there is no problem

Your code so far

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

let botName = "BotX"; 
let botLocation = "The Universe"; 
let favoriteLanguage = "JavaScript";
let botfav="My name is " + "botX" + " and I live on " + "The Universe";
console.log(botfav);
const botCode = "My favorite programming language is " + favoriteLanguage + ".";
console.log(botCode)
let codingFact;
codingFact = "The bot's favorite language is " + "JavaScript";
console.log(codingFact);
codingFact ="my favorite langauge is " + favoriteLanguage;
console.log(codingFact);

codingFact =" Actual My favorite langauge is " + favoriteLanguage;
console.log(codingFact);

codingFact = favoriteLanguage + " is used many  developers";
console.log(codingFact);
codingFact = favoriteLanguage + " is used many  developers";
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

Welcome to the forum @justine2

  1. You should log to the console "My name is (botName) and I live on (botLocation)." using concatenation to add the variables to the string.

For this step you need to access the variables - your code includes the text, it does not reference the variables.

Happy coding