Help with Variables

This is the error message.:You should not change code above the specified comment.
// tests completed

What am I doing wrong?

Your code so far


// Setup
var a = 7;
var b = 2;
var b = a;



Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 9; SM-J701F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36.

Challenge: Storing Values with the Assignment Operator

Link to the challenge:

Your solution is correct, but instead of overwriting the setup code you were supposed to enter it below the comment that indicates this, like:

// Setup
var a;
var b = 2;

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