*The run test button stopped working. I was able to get as far as Understanding Uninitialized Variables section when the run test button stopped working. I disabled extensions, got rid of ad blockers, used 3 different browsers(google chrome, firefox and duckduckgo) and reset my computer and still no fixation. I am not sure why this is happening. Please help.
Your code so far
// Only change code below this line
var 6;
var 15;
var "I am a String!";
// Only change code above this line
a = a + 1;
b = b + 5;
c = c + " String!";
Your browser information:
User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36
You should be seeing a syntax error in the console pane because this is not valid JS syntax. Go back to the previous challenge (Declare String Variables) to remind yourself how to initialize a variable with a value.
These two are still invalid syntax. Look at how you did the third one. Notice how you included the name of the variable in the declaration. You want to do that for these two as well.
You might want to restart the lesson to get the original JS back. You don’t want to remove/change any of the JS that is currently there. You just want to add to it.