Comparing using a percentage sign? % JavaScript
(%) is the modulus operator, it will let you have the remainder of place/sequence.length.
5 % 1 = 0 // because 1 divides 5 (or any other number perfectly)
10 % 3 = 1 // Attempting to divide 10 by 3 would leave remainder as 1