Javascript VAR MYNAME

**Tell us what’s happening:**i don t know whats wrong with this cod

Your code so far


 

var myfirstname= "m"  ; 
var mylastname =  "j"; 

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.162 Safari/537.36.

Challenge: Declare String Variables

Link to the challenge:

Capitalization is important. Variable non-capitalized and capitalized with the same letters are two different variables.

JavaScript is a case-sensitive language.

The challenge is asking you to create two variables named myFirstName and myLastName. Try to change your variable names.