Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

i dont know the reason the last code snippet is not working

Your code so far

console.log ("Hello! I'm your coding fun fact guide!");
let botName = "muiz";
let botLocation = "earth";
let favoriteLanguage = "death";
console.log("My name is "+ botName + " and I live on "  + botLocation + "." );
console.log("My favorite programming language is " + favoriteLanguage + ".")
let codingFact;
codingFact = "I love my " + favoriteLanguage + " alot."  
console.log(codingFact) ;
codingFact =  "To hell with all languages except " + favoriteLanguage 
+ "."
console.log(codingFact)
codingFact = "Freecodecamp be stressing me on " + favoriteLanguage + "."
codingFact = "i want to be a better at" + favoriteLanguage  + "."
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/144.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Notice that the first assignment to codingFact here is never logged and the second has a spacing issue.