Basic JavaScript - Declare String Variables

Tell us what’s happening:

i am doing it right but it wont aknowledge that, it says i need at least one character in my string variable and i have “myLastName”

Your code so far

var myFirstName = "myLastName";

Your browser information:

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

Challenge Information:

Basic JavaScript - Declare String Variables

are you creating both of the required strings?

yes im entering it just like this var myFirstName = “myLastName”;
and its saying that i need at least one character in my string variable

you are creating one variable that holds one string, you need to create the second variable to hold the second string as requested