Hello,
If you look at the header file of SPUtils, you will notice this comment:
/// Returns a random integer number between minValue (inclusive) and maxValue (exclusive).
+ (int)randomIntBetweenMin:(int)minValue andMax:(int)maxValue;
Daniel intended on having maxValue be excluded from the results. Thanks for sharing though.