The getNextLuckyNumber() method is used to draw another lucky number and make sure all the lucky numbers generated are unique.
This method is passed a String parameter containing the numbers which have been generated so far (each number is separated by a space.)
This method is to generate a single number between 1 and 100 inclusive, convert the number into a String (with no extra space at both ends) and check if this number is already in the list of numbers passed in as a parameter.
If the number is already in the parameter a new random number should be generated until a number is generated which is not already in the parameter String.
The getLuckyNumbersString() method
obtain a String of four unique Lucky Numbers (numbers between 1 to 100 inclusive).
This method should make fourcalls to the getNextLuckyNumber() method and concatenate each number returned by the getNextLuckyNumber() method.
The String returned by the method should be made up of four unique lucky numbers with a single space between them and no space at each end.