getRandomChar method

int getRandomChar()

Implementation

int getRandomChar() {
  Random random = Random();
  return next(1, 100, random);
}