Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

This is so frustrating, the console shows the logs correctly but I cannot pass the test

Your code so far

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

const botName = "Mark";
const botLocation = "Philippines";
const favoriteLanguage = "JavaScript";

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

let codingFact = favoriteLanguage + " is love"; console.log(codingFact);

codingFact = "I hate " + favoriteLanguage;
console.log(codingFact);

codingFact = "I pick " + favoriteLanguage;
console.log(codingFact);

codingFact = "I choose " + favoriteLanguage;
console.log(codingFact);



codingFact =
  "It was fun sharing these facts with you. Goodbye! - " +
  botName +
  " from " +
  botLocation +
  ".";
console.log(codingFact);

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

double check how many times you need to do something with codingFact

are you sure you need to use codingFact for user story 11?