What is missing?

Tell us what’s happening:
Describe your issue in detail here.

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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.1 Safari/605.1.15

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

Link to the challenge:

You seem to have accidentally published your post before finishing asking your question.
You should be able to edit it to tell us what is going on and how we can help.

I agree with what ArielLeslie has said - learn to ask good questions.

Looking at your code, you changed the string here:

const FCC = "FreeCodeCamp"; // Change this line

You weren’t supposed to change the string, just replace the var and change the variable name.

When I fix that (changing one letter back to what it was before) then it passes for me.

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