Run test button problem

Tell us what’s happening:
Hello, I just started working on basic JavaScript and I can’t run test for any of my assignments. I tried refreshing the website but it didn’t work. Can anyone help me find a solution? Thank you in advance!

Your code so far


// Only change code below this line
var a 5;
var b 10;
var c "I am a"
// Only change code above this line

a = a + 1;
b = b + 5;
c = c + " String!";

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15.

Challenge: Understanding Uninitialized Variables

Link to the challenge:

If you look below, you see this in the FCC “console”:

// running tests
SyntaxError: unknown: Unexpected token, expected ";" (3:6)

  1 | 
  2 | // Only change code below this line
> 3 | var a 5;
    |       ^
  4 | var b 10;
  5 | var c "I am a"
  6 | // Only change code above this line

It is telling you what is wrong - that is not valid JS. You are missing a character. When I add that character to each of those three lines, the code passes for me.

Thank you! its working again now.