In LotteryTicket.java, I had Eclipse generate get/set methods for the array of numbers public void setNumbers(int[] numbers) { // I need to add the business rules here // the size of the array must be 6 // the array cannot be null // the numbers in the array must be unique // and I should sort the array // all the number must be between1 and 54 this.numbers = numbers; } I need to add the Business rules to the set method, and I need to add tests for each Business rule your assignment for Lunch (until 1:15pm) to code 1 rule/test at time Hint check for null before any other check