You were very close! When assigning or even reassigning a value to an already established variable, you just need to use the name of the variable:
// Setup
var a;
var b = 2;
// Only change code below this line
a = 7;
b = a;
So going by the exercise’s directions, since var a and b are already established (though a doesn’t have a value as of yet) in the // Setup area, we only need to tell it a equals 7 and b should equal the value of whatever’s in a (which we’ve just set to 7). Hope that makes sense.