Understanding Case Sensitivity in Variables Error:I am not able to solve it help me

I am not able to solve it help me

Your code so far

var anotherVariableName;
var thisVariableNameIsTooLong;
var properCamelCase;
var titleCaseOver;
// This is the right answer:

studlyCapVar = 10;
properCamelCase = "A String";
titleCaseOver = 9000;

studlyCapVar = 10;
titleCaseOver = "camelCase";
titleCaseOver = 9000; //"camelCase";```
**Your browser information:**

Your Browser User Agent is: ```Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36```.

**Link to the challenge:**
https://www.freecodecamp.org/challenges/understanding-case-sensitivity-in-variables

Just change the names of the variables so that they are camelCase, don’t add anything else

i have solved it
Tq @DanCouper

1 Like