Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

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

how many times are you asked to assign a value to codingFact? how many times have you assiged a value?

there is a mismatch there

also check user story 4, does that talk about codingFact?

Ok I figured it out! Step 4 was my main issue. Thank you so much for your help, I was just too locked in on the number of facts it would’ve taken me forever to figure that out without you pointing me in the right direction XD