Question ihi hihihi i ihi ih hi

Tell us what’s happening:

Your code so far


// Variable declarations
var StUdLyCapVaR; var studlyCapVar=10;
var properCamelCase; var properCamelCase;
var TitleCaseOver; var titleCaseOver;

// Variable assignments
STUDLYCAPVAR = 10; var studlyCapVar = 10;
PRoperCAmelCAse = "A String"; var properCamelCase = "A String";
tITLEcASEoVER = 9000; var titleCaseOver = 9000;

Your browser information:

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

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

When you declare your variables, you need to pay a little bit more of attention on how you capitalize the names.

I figured it out. Thanks!