Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

Everything is correct, I just don’t understand why those two lines of code don’t work. Pls help me out. Thank you

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
let botName = "Duncan";
let botLocation = "the internet";
let favoriteLanguage = "JavaScript";
console.log("My name is " + botName + " and live on " + botLocation + ".");
console.log("My favorite language is " + favoriteLanguage + ".");
let codingFact = "what is fun?" + favoriteLanguage;
//tge following two lines of code have an issu
console.log(codingFact);
codingFact = "My favorite programming language is  " + favoriteLanguage + ".";
// issue ends
console.log(codingFact);
codingFact = "what is easy?...." + 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/143.0.0.0 Mobile Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

test 8

make sure you have all the words

test 9
make sure you are doing what you are asked. It asks to log the string, not assign it to something

the codingFact variable comes later