Basic JavaScript - Declare String Variables

Tell us what’s happening:
Describe your issue in detail here.
I feel like I have it right but all it says is this

// running tests
myFirstName
should be a string with at least one character in it.
myLastName



**Your code so far**


```javascript
var myfirstName = "Francis"; 
var mylastName = "Pierre";

Your browser information:

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

Challenge: Basic JavaScript - Declare String Variables

Link to the challenge:

please check the case of the variables. you are using lowercase where uppercase is needed.

Javascript is case-sensitive. That means that two variables with different capitalization (eg, myname and myName) are not the same.

Check your variable names carefully. They are not the same as the ones that are required.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.