Let's create a simple lottery that will return balls with a random color and random number.
Your tasks are:
- create
Ballclass with the following fields:colorandnumberand overridetoString()method - create enum with different colors
- implement method
String getRandomColor()in classColorSupplier. This method should return a random color, based on the enum values (useRandomclass for this)
Then create a Lottery class with getRandomBall() method, which will return the ball.
This method should create a ball with a random color and a random number (the maximum possible number should be 100) and return this ball from the method.
To test the program, in main() method, create three balls using getRandomBall() method from Lottery class.
And print information about them in the console.