USING JAVA, PLEASE MAKE THIS AS SIMPLE AS POSSIBLE, THIS IS AN
INTRODUCTORY JAVA COURSE
1. Design and implement a class called PairOfDice.
The class should include:
a. A non-default constructor, i.e. with parameters
b. A setter method for each instance data
c. A getter method for each instance data
d. A method roll() that rolls both dice
e. A toString() method that returns a string containing the
colors of both dice, eg "Colors of both dice: Red,Blue "
f....