Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

For some reason I am not getting step 14, even though I believe I am successfully assigning ‘codingFacts’ for a third time that contains ‘favoriteLanguage’.

Your code so far

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

let botName = "Conrad";
let botLocation = "Wilkes-Barre";
let favoriteLanguage = "Java";

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

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

codingFact = "Language "+favoriteLanguage+" is the first language I learned.";
console.log(codingFact);

codingFact = "I usually do not like coding, but "+favoriteLanguage+" is not terrible.";
console.log(codingFact);

codingFact = "I do my best to use " +favoriteLanguage+ " everyday.";
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/149.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-javascript-trivia-bot/66ed41f912d0bb1dc62da5dd.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @retepztiruk ,

You are actually logging coding_fact four times. Please review the user stories again to make sure you are implementing them as asked.

Happy coding

hello!

in addition to what @dhess said, i suggest you to check UserStory#4 and reconsider this - did the instructions ask to store this line in codingFact or just simply log it?