Let's get back to numbers. There are quite a few ways of incrementing a variable by 1. Let's start with the most basic one.

Easy peasy! We just add 1 to our variable and reassign the result to itself again.

Whoops! The output is the same, but that wouldn't increment the variable, would it? We need to also reassign the value back after adding 1.