What errors are you getting? Is it just not passing the test? Remember that variables are case-sensitive, so myname and myName are different. Also, that line should end with a semicolon.
Ok, it looks like the problem is you’re saying myname (lowercase “n”) instead of myName (uppercase “N”). The tester is looking to see if myName exists but instead it only finds myname so the test fails. If you change myname to myName, it should work. This is important, because in programming languages variable names tend to be case-sensitive, meaning that capitalization of letters matters.
Also, don’t forget to end the line with a semicolon!
No worries! I get notifications if you respond to my comments, but there are lots of people on this forum who can help you (and not everyone is logged in all the time!). If you run into a new problem you can’t solve, I recommend posting it as a new question.