random method
Generates a random number between two bounds
Implementation
Random random([left, right, options]) {
if (right != null) {
return Random.rightBound(left, right, options);
} else if (left != null) {
return Random.leftBound(left, options);
} else {
return Random(options);
}
}