'Loop allows for a repitition of statements - using a condition to decide when the loop should continue or stop
'There are 2 main concepts that come into loops;
'1 - Incrementing - counter = counter + 1 -- always by a constant (in this case '1')
'2 - Accumulating - totalsales = totalsales + sales -- always by a variable (in this case 'sales')