Gives a random number in the given range. The first parameter is inclusive and the second one is exclusive. Therefore, it will work with lists out of the box.
rand(0, 10); // 0 -> 9rand(3, 7); // 3 -> 6 Copy
rand(0, 10); // 0 -> 9rand(3, 7); // 3 -> 6
Gives a random number in the given range. The first parameter is inclusive and the second one is exclusive. Therefore, it will work with lists out of the box.