I'm trying to write a method called randomInt that takes two integers,low and high, and that returns a random integer x so that low is less than or equal to x which is less than high.
I don't know how to make it random .public static int randomInt (low, high) { int high=100; for (int low=0; low <= 100; low ++) { int i= random (); return i; }