i--: A shorthand way of decrementing the value of "i" by 1.
++i: A prefix version of incrementing, where the value is incremented first, then used in an expression.
+=: An assignment operator that adds a value to a variable and assigns the result back to the variable.