Tell us what’s happening:
Regarding assigning variables through Javascript, what does the error mean “You should not change code above the specified comment.”
Your code so far
// Setup
var a = 7;
var b = 7;
b = a;
// Only change code below this line
// Setup
var a = 7;
b = a;
// Only change code below this line
var b = 7;
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36.
Challenge: Storing Values with the Assignment Operator