How exactly does the ++ operator work when added to a normal array of ints like this myArray[range]++;
if I got a selection of values (range) being added iteratively 1,2,3,3,3,4,4 will it add 1 once, 2 once, 3 three times and 4 two times? And does it just add it to the end of the array?