The instruction: " Assign the contents of a to variable b ."
The variable a is declared, and the number 7 is assigned.
The variable b is only declared. In order to assign some value to it, the challenge asks you to make it equal to ‘a’ by assigning ‘a’ to it.
Don’t use the var keyword here (the variables are already declared), only the variable names. The ‘b’ should be on the left side of the ‘=’ operator.
Consider again the given example:
var myVar;
myVar = 5;
var myNum;
**myNum = myVar;** (what is 'a' and what is 'b' in your case?)