This case is so confusing

Tell us what’s happening:

Your code so far


// 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; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36.

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

@maskadev hey,

you have got all the declarations right except titleCaseOver you just need to change the assignments to match them too (camelCase) so the first word starts with lowercase letter then every word after starts with an uppercase letter

soItLooksLikeThis