public static int GetRandomNumbersInRange(){ Random r = new Random(); return r.Next(1, 5);}
Login to post response