Need help on camel case for a variable

Tell us what’s happening:
In the Basic JavaScript program, there’s an exercise asking to change the Var StUdLyCapVaR;
to camel case. However, after changing the “S” to “s” and the “R” to “r”, and whether I try “studLy” or “StUdLy”; nothing seems to be correct to satisfy the test. Any suggestions?

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 6.0; rv:52.0) Gecko/20100101 Firefox/52.0.

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

Hi @msjeffjobs, welcome to the forum :slight_smile:
The problem is that the correct name for the variable in camel case is studlyCapVar, with a lower case L.
You can see it also in the challange page by looking at the tests that need to pass.