Help me with var name declaration

Tell us what’s happening:

Your code so far


// Example
var ourname;
// Declare myName below this line
var myname;

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/declare-javascript-variables/

You have to declare myName variable.
Whereas you have myname.

Does that help?

JavaScript is case sensetive. So you need to declare exactly “myName”, cause “myname” “myName” “MyName” and any other forms are different names for JavaScript.