I'm supposed to create a string with one character and I don't know how

Tell us what’s happening:
Describe your issue in detail here.

Your code so far


var myFirstname = "a t";
var myLastname = "u a";

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 9; SM-T295) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.136 Safari/537.36

Challenge: Declare String Variables

Link to the challenge:

You didn’t finish asking your question. Please update your post to tell us what’s going on and how we can help.

I don’t know how else to ask

The names of your variables aren’t quite correct. You are forgetting to make them uppercase in a certain spot.

What are you trying to accomplish? What problem are you having? What else have you tried? Is there a specific part of the instructions tests which is confusing for you?

Please explain some more

I don’t know if there is any more to explain. The instructions are asking you to create two variables with the given names and you are not quite using the given names. Variable names are case sensitive in JS so you need to make sure the capitalization is correct and matches the names in the instructions.

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