(a.) When using modulos, you must always have a value on the left and right side of the [%]
(b.) The code will then take the left number and divide it by the right number
(c.) After being divided, Lua will return the remainder that has been left behind from the equation.
(a.) 5%2 -- This example modulo equation will be used throughout examples a-c
(b.) 5/2 = 2 remainder 1 -- 5 is divided by 2, leaving 2 and a remainder of 1
(c.) 1 -- Modulo only pays attention to the remainder, so the 2 is ignored
This means that 5%2 = 1
10%2 = 0
1%2 = 1
16%5 = 1
100%25 = 0
7%4 = 3