#Understanding Case Sensitivity in Variables

i am being told to define this code, how it done

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/83.0.4103.61 Safari/537.36.

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

The instructions are

Modify the existing declarations and assignments so their names use camelCase.
Do not create any new variables.

You need to change capitalization in the variable definitions and assignments to use camelCase. STUDLYCAPVAR, PRoperCAmelCAse, ande tITLEcASEoVER are not written in camelCase.