Write once, reuse everywhere
Variables shine when a value shows up in more than one place. Store it once, then reuse the name. Change the variable and every shape that uses it updates together — no hunting through your code.
TIP
This is the real payoff of variables: less repetition, and changes happen in one spot instead of many.