Tell us what’s happening:
to begin, I don’t fully understand “what I’m being asked” a lot of that relates to me not yet speaking the language. please explain to me what I’m being asked to do.
Your code so far
// myNum = myVar;
var a;
var b = 7;
var a = b;
// Only change code below this line
The assignment operator is this =, and it stores what it is at the right of he assignment operator to the variable to the left of the operator myVar = 29 is storing the value 29 on the variable myVar,
you can also do the same thing with variables myVar = anOtherVar this is assigning the value of anOtherVar to the variable myVar