Certain assignment operators can change values as well. The += sign, for example, adds a number. How might we subtract a number, then?

Nice! The height -= 0.2 statement is a shortcut for height = height - 0.2.

Psst: there are *= and /= operators as well.

Would that operator really when trying to decrement and assign?