Help me please i don't understand this

I put the code the same as the example and the video but it still says that it is wrong? and even if i do
var myname;
myname = hunter; it still does not work


var myname = "hunter";

Challenge: Declare JavaScript Variables**

Link to the challenge:

What is not working?

One thing you are going to find is that the tests are very picky and very strict about what they are looking for. Read the instructions again very carefully. What is the name of the variable they want you to create and assign a value to? Remember, JS is case sensitive.

also, remember that declaring a variable means just doing var myVar, it you are also assigning it a value you are initialising it