Tell us what’s happening:
Am trying to reassign my variable called character to the word "world"This is level 6 in freecodecamp llearn javacsript but its telling me sorry, your code doesn’t pass.
my code is
let character = “hello”;
character = “world”;
Your code so far
// User Editable Region
let character = "Hello";
character = "world";
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36
Challenge Information:
Learn Introductory JavaScript by Building a Pyramid Generator - Step 6