Random selection of a defined group of numbers

int temp = random(1,4);
should be
int temp = random(1,5);

to get 1 to 4.

1 Like