JavaScript basic case sensitivity problem

Tell us what’s happening:
i don’t understand what to put in the test.

Your code so far
// Variable declarations
var studlyCapVarcamelCase;
var properCamelCasecamelCase;
var titleCaseOvercamelCase;

// Variable assignments
studlyCapVarcamelCase = 10;
properCamelCasecamelCase = “A String”;
titleCaseOvercamelCase = 9000;


// Variable declarations
var studlyCapVarcamelCase;
var properCamelCasecamelCase;
var titleCaseOvercamelCase;

// Variable assignments
studlyCapVarcamelCase = 10;
properCamelCasecamelCase = "A String";
titleCaseOvercamelCase = 9000;


Your browser information:

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

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

why have you mashed up all the variables?

if you ahve doubts the tests tell you how they should be

@nabu13

Use only the variables FCC has provided

Use exact variables available to you and it will work :grinning:

Hope this helps you

Thanks