Understanding Case Sensitivity in Variables FCCJS#6

Tell us what’s happening:
Hi guys, I’m unable to complete this challenge because I don’t understand it.

-I understand that this challenge teaches you how to use the case sensitive variable declaration but I don’t know what do I have to do with the code it shows…

Your code so far


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

// Assignments
STUDLYCAPVAR = 10;
PRoperCAmelCAse = "A String";
tITLEcASEoVER = 9000;

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/understanding-case-sensitivity-in-variables

You need to make both the declarations of variables and the assignments of variables in camel case (matching the variables that the tests expect as written in the tests section)

Thank you, It worked, :smiley: