Hi @amypolito.
After a variable has been declared (when you do var a…) you shouldn’t declare it again (basically you shouldn’t put the var word before it).
What you can do, though, is assigning it a value (which you do with the assignment operator “=”).
The part on the left of the = is the variable that will get a new value.
The part on the right can be an expression that will be evaluated. The result of this evaluation will be the new value for the variable on the left.