// Author: (write your name here) public class Ex1 { public static int N = 10; // Array size public static int K = 2; // Number of indices to generate // The method uniform returns an integer between lower and upper, inclusive. public static int uniform (int lower, int upper) { return (int) UniformRandom.uniform ((long) lower, (long) upper); } // The main method inside which you will write your code. public static void main (String[] argv) { // Example of how to use uniform(): int test_int = uniform (1, 10); System.out.println ("test_int=" + test_int); // Enter your code here. } }