Understanding Case Sensitivity in Variables -stuck

Tell us what’s happening:
Help, please I do not see what I’m doing wrong to not pass the test.

Your code so far


// Declarations
var studlyCapVaR;
var properCamelCase;
var titleCaseOver;

// Assignments
studlyCapVaR = 10;
properCamelCase = "A String";
titleCaseOver = 9000;

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/understanding-case-sensitivity-in-variables

In the objectives of the challenge, it is said that “studlyCapVar” should be defined, however, the the code editor, it’s “studlyCapVaR” that is defined (note the capital R at the end of the variable) Change both “studlyCapVaR” into “studlyCapVar”, it should do the trick.

Hey Rach,
Remember how camelCase works and then try to find out error.
In the challenge it is clearly mentioned about using camelCase.
Hope it helps.

Thank you, no matter how many times I stared at this code ,I didn’t see that the capitol “R” was there. I need to skill up on my editing eyes, lol. Thanks again.