Understanding Case Sensitivity

I am totally confused with this challenge.

// Variable declarations
var STUDLYCAPVAR;
var PRoperCAmelCAse;
var tITLEcASEoVER;

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

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

What confuses your about this challenge? You are supposed to make these variables, in both the declaration and assignment, in camelCase:

var someVariable;
var anotherVariableName;
var thisVariableNameIsSoLong;

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.