Yes I understand the issue (now). An Integer on arduino Uno is 16 bytes. MSB is the signed bit so that leaves : 15 bits(-1) = (2^15) - 1 = 32,767.
The number 75000 is to big for a 2 byte Integer and thus overflows twice:
75000 - 32,767 - 32,767 = 9466.
I also write software on a teensy 4.1 where an integer is 4 bytes. I forgot about the size of an integer on an arduino Uno.