Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

Step 8 asks me to log to console "My name is (botName) and I live on (botLocation). - Not sure what Im doing wrong in the code. please help . Last step asks for me to log to console "It was fun sharing these facts with you. Goodbye - ! (botName) from (botLocation.) Wont pass with this code I have either.

Your code so far

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

let botName
let botLocation
let favoriteLanguage

botName = "cyberBot ";
botLocation = "universe ";
favoriteLanguage = "java ";

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

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

let codingFact = "Before it was called mocha it was called " + favoriteLanguage + "." ;
console.log(codingFact);

codingFact = favoriteLanguage + "was created in just 10 days!";

console.log(codingFact);

codingFact = favoriteLanguage + "is used everywhere";

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/143.0.0.0 Safari/537.36 Edg/143.0.0.0

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Is your bot’s name cyberBot or cyberBot<space> ?

It’s not really expected to add a space at the end of these strings to resolve the spacing.