@grahamjohnson75 I was running into the same problem and the answers here also didn’t help me. I had to type on the first line: let truthyOrFalsy = “freeCodeCamp”;
I hope that helps you or anyone else running into this. I was stuck!
There is no need to declare the variable with let rather than const because, as @Teller said, you are not reassigning the value; you are changing the initial value.
For example, this code would generate an error because you cannot reassign a variable declared as const:
But you are being asked to only change the initial value, so const truthyOrFalsy = "freeCodeCamp" works.
In the future, please create your own topic when you have specific questions about your own challenge code. Only respond to another thread when you want to provide help to the original poster of the other thread or have follow up questions concerning other replies given to the original poster.
The easiest way to create a topic for help with your own solution is to click the Help button located on each challenge. This will automatically import your code in a readable format and pull in the challenge URL while still allowing you to ask any question about the challenge or your code.