Hey guy! can someone please tell me what's wrong with my code? It's giving me an error!

// Assignments

var studlyCapVar = 10;

var properCamelCase = “A String”;

var titleCaseOver = 9000;

Your code so far


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

// Assignments
var studlyCapVar = 10;
var properCamelCase = "A String";
var titleCaseOver = 9000;


// running tests
studlyCapVar should use camelCase in both declaration and assignment sections.
titleCaseOver should use camelCase in both declaration and assignment sections.
// tests completed

Your browser information:

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

Challenge: Understanding Case Sensitivity in Variables

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

var StUdLyCapVaR;
var TitleCaseOver;

These variable names are not camelCased^^

Thank you for letting me know