Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

After starting a new line of code it reset my previous correct steps I cant finish the build a bot because when i get to step 11 and finish the line of code as prompted the 10 previous steps reset. please help is this an issue on my laptops end or the freecodecamp side of it

Your code so far

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

let botName = "Cade";
let botLocation = "Cades Laptop";
let favoriteLanguage = "JavaScript";

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

let codingFact = "My favorite coding language, " + favoriteLanguage + ", Uses strings like this.";
console.log("codingFact");

let codingFact = ("A new fact about " +favoriteLanguage + " is that it is the first programming language cade is learning.");


Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36 Edg/150.0.0.0

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

Hi @CadeR

SyntaxError: unknown: Identifier 'codingFact' has already been declared. (13:4)

Did you notice the error message in the console?

You can only declare a variable once using the let keyword.

Happy coding