Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

It is flagging step 1. Any help would be greatly appreciated. Thank You for your time.

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
let botName = "Mark";
let botLocation = "Beach";
let favoriteLanguage = "html";
console.log("My name is " + botName + " and i live on " + botLocation + ".");
let codingFact = "I love that " + favoriteLanguage + " is the building block of digital creation " + ".";
console.log(codingFact);
let codingFact = "I also love that " + favoriteLanguage + " is simple and straightforward and not a big pain in my ass " + ".";
console.log(codingFact);
let codingFact = "Another great thing about " + favoriteLanguage + "is that it doesn't make me want to rip my freaking hair out " + ".";
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/135.0.0.0 Safari/537.36 Edg/135.0.0.0

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

It’s a little misleading as you shouldn’t be failing the first test. However, you have syntax errors in your code, which are causing all tests to fail. Specifically, you shouldn’t be trying to redeclare the variable codingFact. Once you have declared it with let, you should omit the let keyword when you wish to assign it a new value.
If you fix this, you will pass most of the tests.