Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

I’m having an issue with number 14. I don’t know if I missed anything, but I went over it a bunch of times and it says it’s wrong. All of the other steps are good. I’m just checking to see if my assessment is correct, or if it’s a problem on the website’s end

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
let botName = "Gujo";
let botLocation = "Seattle";
console.log("My name is " + botName + " and I live on " + botLocation + ".");
let favoriteLanguage = "Java";
let codingFact = " is over 30 years old";
console.log("My favorite programming language is " + favoriteLanguage + ".");
console.log(favoriteLanguage + codingFact);
codingFact = "Minecraft was created using " + favoriteLanguage;
console.log(codingFact);
codingFact = favoriteLanguage + " runs on billions of devices" + ".";
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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.5 Safari/605.1.15

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-javascript-trivia-bot/66ed41f912d0bb1dc62da5dd.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @Gujo

11. You should give codingFact a value that includes favoriteLanguage.

You need to include a variable in the variable declaration.

Only log codingFact:

Happy coding