Can't figure out what's wrong here!

Tell us what’s happening:
I typed the right thing (I think so…), but it still says that it’s wrong. What should I do?
Your code so far

// Setup
let myStr = "Jello World";

// Only change code below this line
myStr = "Hello world"; // Change this line
// Only change code above this line

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Understand String Immutability

Link to the challenge:

The test won’t pass because it doesn’t match the requirements.
Notice that the letter 'w' need to be a capital letter

      |
      v
Hello World -> Expected
Hello world -> Your text
      ^
      |
      
1 Like

I am a beginner in coding but could the problem be that your ‘W’ is not a capital letter