Understanding Case Sensitivity in Variables help me. Hello

Tell us what’s happening:

Your code so far


// Declarations
var studlyCapVarCamelCase = 10;
var properCamelCase = "A" + "String";
var titleCaseOverCamelCase = 9000;

// Assignments
studlyCapVarCamelCase = 10;
properCamelCase = "A String";
titleCaseOverCamelCase = 9000;

This: studlyCapVar is defined and has a value of 10
And this: titleCaseOver is defined and has a value of 9000
These two items show me as wrong, but the others are corrects, according to the test…

Your browser information:

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

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

Thanks. It was helpfull!