public class Helper { public int getRandomNumber(int max) { return ((int)(Math.random() * (max+1))); } }