What method returns a random int between a min and max? Or does no such method exist?
What I\'m looking for is something like this:
NAMEOFMETHOD (mi
public static int random_int(int Min, int Max) { return (int) (Math.random()*(Max-Min))+Min; } random_int(5, 9); // For example