Tell us what’s happening:
Describe your issue in detail here. I want to assign the contents of a to varible b. in Javascript. I keep getting errore message… // running tests You should not change code above the specified comment.
b should have a value of 7
a should be assigned to b with =.
. // tests completed // console output ReferenceError: a is not defined ReferenceError: a is not defined
**Your code so far**
```js
var varA;
varA = 7;
var varB;
varB = varA;
varB = 7;
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36
Challenge: Assigning the Value of One Variable to Another
Link to the challenge: