Tell us what’s happening:
I’ve read previous answers and I truly cannot figure out what’s wrong with step 14… Even when I copy and paste the code from the other accepted portions it doesn’t work. I feel like this has to be a bug with how the code is tested. I just need to know what exactly would be accepted
Your code so far
console.log("Hello! I'm your coding fun fact guide!");
let botName = "lab bot";
let botLocation = "planet freeCodeCamp";
let favoriteLanguage = "HTML";
console.log("My name is " + botName + " and I live on " + botLocation + ".")
let codingFact = "My favorite programming language is " + favoriteLanguage + ".";
console.log(codingFact);
codingFact = "ss actually a markup language " + favoriteLanguage + ".";
console.log(codingFact);
codingFact = "Im just learning JavaScript, but Im really good with " + favoriteLanguage + ".";
console.log(codingFact);
codingFact = " " + favoriteLanguage + " actually work this time jesus.";
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; rv:150.0) Gecko/20100101 Firefox/150.0
Challenge Information:
Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot