// Declaración de variables
var studlyCapVar = 10;
var properCamelCase = "A String";
var titleCaseOver = 9000;
// Asignación de variables
STUDLYCAPVAR = 10;
PRoperCAmelCAse = "A String";
tITLEcASEoVER = 9000;
No entiendo que está mal en el codigo
You need to change the variable names in the assignments as well.
STUDLYCAPVAR = 10;
PRoperCAmelCAse = "A String";
tITLEcASEoVER = 9000;
If you have a question about a specific challenge as it relates to your written code for that challenge need some help, click the Ask for Help button. This button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.
Thank you.