You are going to create a console based program to keep track ofa small business that sells Doodads.
First you will need to create a class Doodad that keeps track oftwo integers and two Strings.
Next, create a constructor for the Doodad.
Next, add getters and setters for each of the fields (twointegers and two Strings).
You need to use Doodad.java (see the starter code)
Inside your main method ask the user to read in the two integersand two Strings. Create a Doodad object and add it to an array of100 Doodad objects. Allow the user to keep entering in Doodadobjects until the user wishes to quit.
Once the user is done entering Doodad objects, show theinformation about the Doodads they entered.
You will show the first number, followed by a space, followed bythe first word.