Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

Test 11 is the only one I cannot get to check. Can someone help me figure out what to do? I have reset the lesson and have refreshed my browser.

Your code so far

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

let botName;
botName = "Jane";

let botLocation;
botLocation = "Mars";

let favoriteLanguage;
favoriteLanguage = "Java";

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

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

let codingFact;

codingFact = "One great thing about " + favoriteLanguage + " is its versatility. ";
console.log(codingFact);

codingFact = "Another great thing about " + favoriteLanguage + " is its ease.";
console.log(codingFact);

codingFact = "Finally, " + favoriteLanguage + " is exciting to use.";
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/134.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Welcome to the forum :wave:

Test does not like this. Declare and assign it in 1 line