klyn.math.Random.randInt
method
public static randInt(min as UInt, max as UInt) as UInt:
DescriptionReturns a random unsigned integer in [min, max].
value = Random.randInt(1u, 100u)
print(value)
ReturnsA random unsigned integer between `min` and `max` (inclusive).