Storing Values with the Assignment Operator - glitch

Tell us what’s happening:
I think I have the code right and it’s just not passing the test for some reason.

Your code so far


// Setup
var a;
var b = 2;

// Only change code below this line
var a = 7
var b = a

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/storing-values-with-the-assignment-operator

The variables a and b are already defined with the var keyword. There’s no need to use that keyword again in the last two lines.

Also don’t forget semicolons after each line.