Understanding Case Sensitivity in Variables.2

Tell us what’s happening:
Please assist.I’m looking through my code and I cant’t see whats wrong?

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.1; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0.

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

I did the following and it passed the challenge
please try the below, let us know if you have any further questions:

// Declarations
var studlyCapVar;
var properCamelCase;
var titleCaseOver;

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