Declare a Read-Only Variable with the const Keyword
Problem Explanation
Change the code so that all variables are declared using let or const .
Hints
Hint 1
- You should change
fCCto all uppercase.
Hint 2
FCCshould be a constant variable declared withconst.
Hint 3
factshould be declared withlet.
Hint 4
console.logshould be changed to print theFCCandfactvariables.