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
let facT = "is awesome!";
console.log(fCC, fact,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/96.0.4664.45 Safari/537.36 OPR/82.0.4227.23
Challenge: Declare a Read-Only Variable with the const Keyword
var fCC = "freeCodeCamp"; // Change this line
var fact = "is cool!"; // Change this line
fact = "is awesome!";
console.log(fCC, fact); // Change this line
You have made a bunch of changes you weren’t supposed to. You need to:
Just to be clear, only change the name of the variable. Some people misread this and think they have to change the contents of the variable, the string literal.