If we want to add one value to a variable, we do it with the += operator.
+=
Let's take a look.
Using this operator is the same as wins = wins + 1.
wins = wins + 1
We first need the + operator followed by the = operator.
+
=