A should be assigned to b with =.1

Tell us what’s happening:
umh idk how to assign a to b with a = i dont get it i need help

Your code so far


// Setup
var a;
var b = 2;

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

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.116 Safari/537.36.

Challenge: Storing Values with the Assignment Operator

Link to the challenge:

Remember to assign the contents of a to b.

im still lost how do i assign again im so dumb sorry

// Setup

var a;

var b = 2;

// Only change code below this line

a = 7; // Assign the value 7 to variable a.

b = a; // Assign the contents of a to variable b.