What the lesson is aiming to teach you is how variables are resolved before being assigned.
The way you wrote your code you are not really using this to your advantage, and not using the value that a is storing; you are “manually” assigning the same value to both.
Remember, variables have been declared in the setup section, You don’t have to declare the variables again. I mean, you not have to write var a or var b again. You o le have to asign the new values.
ok I will simplify it moving forward, I didn’t know that if it was declared earlier it doesn’t have to be declared again, thanks I will be sure to not do that moving forward. but now for the final answer how do I assign a to be? I tried typing a = b but it doesn’t accept it at as answer