I dont know what im i supposed to do

Tell us what’s happening:

Your code so far


// Declarations
var studlyCapVar;
var properCamelCase;
var titleCaseOverr;

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

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

1 Like

change all the assignments to use camel case

2 Likes

Each variable being assigned in the Assignments section is failing, because those variables don’t exist. They’re asking you to match the variables, both letters AND case, with those given in the Declaration section.

The point of this lesson is, case in variable names in javascript really REALLY matters.

HoPe tHAt hElPS! :wink: