Basic JavaScript: Understanding Case Sensitivity in Variables

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

// Assignments
STUDLYCAPVAR = 10;
PRoperCAmelCAse = “A String”;
tITLEcASEoVER = 9000;

Please can I have an explanation on what I am needed to do for this question

You have to declare all the variables in camelCase.
And then change them in assignments as well.
In camelcase, first word is written in lowercase and then first letter of every word that we use is in
UPPERCASE.
Examples:
nevergiveup in camelcase would be neverGIveUp
iamcamelcase becomes iAmCamelCase
If you see freeCodeCamp's logo at the top of website, even that is in camelCase.

Hope this helps

on further reading from other sources I was able to work out what was needed to move onto the next section, thank you for anyone that was going to help me

thanks for the help, I also did some reading on this to get it into my head, thank you for your time and help