Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

I finished the code and run correctly but can’t go to next level

Your code so far

console.log("Hello! I'm your coding fun fact guide");
const botName='Zienab';
const botLocation='Assiut';
const favoriteLanguage='C++';
console.log("My name is" +   botName + "and I live on" + botLocation + '.');
console.log("My favorite programming language is" +  favoriteLanguage + ".");
let codingFact;
codingFact = "love joking with"  +  favoriteLanguage  +  ".";
 console.log(codingFact);
 codingFact = "learning friends"  +  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 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Start with the first failing test. Look at the user story associated with that test and make sure it is implemented exactly as asked in the instructions. For example, does the text you are logging above match exactly to the text in the instructions? Pay attention to punctuation and spaces.