Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

I think this section is bugged. I try to follow other solution, which is putting string first then add the variable. but still not working.

If I add the third codingFact variable, the machine just consider I haven’t add the third variable and does not consider me finish the last task.

Please advise.

Here my code snippet:

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
let botName = "Ian";
let botLocation = "Sukabumi";
let favoriteLanguage = "Go";

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

let codingFact = "Go is simple";
console.log(codingFact);
codingFact = "Muach " + favoriteLanguage;
console.log(codingFact);

codingFact = "that is why " + favoriteLanguage;
console.log(codingFact);

codingFact = "Dear lol " + 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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Hi there!

The instructions ask you to log codingFact three times. You have logged it four times.

Happy coding!

Thank you for your response.
I just remove the fourth log.
However it still consider that I’m not logged its

Please post your updated code.

oh right, here:

console.log("Hello! I'm your coding fun fact guide!");
let botName = "Ian";
let botLocation = "Sukabumi";
let favoriteLanguage = "Go";

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

let codingFact = "Go is simple";
console.log(codingFact);

codingFact = "Muach " + favoriteLanguage;
console.log(codingFact);

codingFact = "that is why " + favoriteLanguage;
console.log(codingFact);

console.log("It was fun sharing these facts with you. Goodbye! - " + botName + " from " + botLocation + ".");

this one should also be done with teh favoriteLanguage variable

Oh you are right. Thanks for the help