Basic JavaScript - Understanding Case Sensitivity in Variables

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

// Variable declarations
var stUdLyCapVaR = 10;
var properCamelCase =  "A String";
var titleCaseOver = 9000;

// Variable assignments
stUdLyCapVaR = 10;
properCamelCase = "A String";
titleCaseOver = 9000;

Your browser information:

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

Challenge: Basic JavaScript - Understanding Case Sensitivity in Variables

Link to the challenge:

hi there, you haven’t filled out the “Tell us what’s happening:” field in your post.
Please explain what you need help understanding or doing.

it just doesnt work and i dont see my mistake
it says that:

studlyCapVar should be defined and have a value of 10
studlyCapVar should use camelCase in both declaration and assignment sections.

please click the reset button so your code is returned to its original state like below:

// Variable declarations
var StUdLyCapVaR;
var properCamelCase;
var TitleCaseOver;

// Variable assignments
STUDLYCAPVAR = 10;
PRoperCAmelCAse = "A String";
tITLEcASEoVER = 9000;

The objective is to change only the -names- of the variables. You should not add any code at all here.
Just correct the names.

I clicked the reset button and corrected everything and it still says the same

and in my opinion your solution is not correct at all

after clicking the reset, you must only change the names of the variables to be camel case style.

If you have done so, and you are still stuck, please share the new code here by copying it and posting it in your response (make sure you place it in a code block so it is readable)