Understanding Case Sensitivity in Variables:Challenge Issue Update

Tell us what’s happening:

Code Challenge is not recognizing standard case-sensitive variables for studlyCapvar. Found the solution by capitilizing the V in CapVar but single-words should also be an acceptable solution.
// Declarations

var studlyCapvar;

var properCamelCase;

var titleCaseOver;

// Assignments

studlyCapvar= 10;

properCamelCase = “A String”;

titleCaseOver = 9000;


// 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:62.0) Gecko/20100101 Firefox/62.0.

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