Where is the error in keywords "const" and "let"

Tell us what’s happening:
I don’t see where the error in my code, I need help please

Your code so far


const fCC = "freeCodeCamp"; // Change this line
let fact = "is cool!"; // Change this line
fact = "is awesome!";
console.log(fCC, fact); // Change this line

Your browser information:

User Agent is: Mozilla/5.0 (Android 10; Mobile; rv:96.0) Gecko/96.0 Firefox/96.0

Challenge: Declare a Read-Only Variable with the const Keyword

Link to the challenge:

I’ll get you started here. Look at the first error message:

“You should change fCC to all uppercase.”

You currently have it as:

const fCC = "freeCodeCamp";

Do you see why you are getting this error message?

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.