Can u help me with this?

Tell us what’s happening:

Your code so far


// Setup

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

var b = 7;
b = a;

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36.

Challenge: Storing Values with the Assignment Operator

Link to the challenge:

In this challeng you should not modify the code above comments. Also, you should assign 7 to variable a and the variable a to variable b. Like that:

a =7;
b = a;

I hope I could help!

This challenge is about reassigning values to variables, so you can add new code, but you can’t move or change the “default code”.