Var properCamelCase

Tell us what’s happening:

i have the assignments and declarations the same as you have. It keeps telling me I’m not using proper camelcase when i test my code but I definitely have it written correctly. it’s driving me nuts.

Your code so far

// Declarations
var StUdLyCapVaR;
var properCamelCase;
var TitleCaseOver;

// Assignments
STUDLYCAPVAR = 10;
PRoperCAmelCAse = "A String";
tITLEcASEoVER = 9000;

var studlyCapVar;
var properCamelCase;
var titleCaseOver;

studlyCapVar = 10;
properCamelCase = "A String";
titleCaseOver = 9000;```
**Your browser information:**

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

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