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

Please I need help, my code refuse to run.**

const fCC = "fERR_CODE_CAMP"; // Change this line
const fact = "IS_COOL!"; // Change this line
 let fact = "is awesome!";
const 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/108.0.0.0 Safari/537.36

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

Link to the challenge:

it looks like you changed the 3rd line but you were not supposed to change it.
You were supposed to change only the lines marked with the comment // Change this line

edit: also don’t forget to follow the ‘common rules’ about naming.

1 Like