random function

int random(
  1. int no
)

Implementation

int random(int no) {
  return Random().nextInt(no);
}