A fraction p/q where both numerator and denominator are chosen randomly within bounds. Enable "Reduce to lowest terms" to simplify using GCD (e.g. 4/8 → 1/2).
A random integer 0–255 (8 bits). Byte mode uses crypto.getRandomValues() — cryptographically secure randomness from your operating system's entropy source.
Byte mode uses crypto.getRandomValues() (CSPRNG). Fraction, float, and percentage modes use Math.random() — fine for testing but not for security-sensitive applications.