getRandom static method

int getRandom()

Implementation

static int getRandom() {
  var rng = Random();
  return rng.nextInt(100);
}