Tell us what’s happening:
Steps 12-14 are failing for some reason, even though I’ve accounted for the “start string assignment with a variable” bug.
Your code so far
console.log ("Hello! I'm your coding fun fact guide!");
let botName = "triviaBot";
let botLocation = "Earth";
let favoriteLanguage = "Javascript"
console.log ("My name is " + botName + " and I live on " + botLocation + ".");
console.log ("My favorite programming language is " + favoriteLanguage + ".")
let codingFact = " Did you know that " + favoriteLanguage + " powers most of the internet?";
console.log (codingFact);
codingFact = " " + favoriteLanguage + " interfaces with various markup languages to power your favorite websites!";
console.log (codingFact);
codingFact = " " + favoriteLanguage + " inserts semicolons into your code if you forget, so you don't need to worry about it! (You still should though)";
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/143.0.0.0 Safari/537.36 OPR/127.0.0.0 (Edition std-2)
Challenge Information:
Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot