Something missing but cant see it

Something missing or wrong code entered,having trouble…please help

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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36

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

Link to the challenge:

You have a full stop between const and FCC

1 Like

You have a period(.) between const and the variable name. It is not required. Remove it and you will be good to go

1 Like

remove the space b/w console.log and the parenthesis “(”
and also do what Benmuiruri said !

1 Like

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