Basic JavaScript - Declare a Read-Only Variable with the const Keyword

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!";
 print:(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/108.0.0.0 Safari/537.36

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

Link to the challenge:

someone help .whats wrong with the code

undo the change you did to the console.log (it should stay console.log)
also you should only use capital letters for const variables.

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