Validation says this : The Hen class must have a getMonthlyEggCount method. The Hen class must have a getDescription method. The AsianHen class must be in a separate file. The AfricanHen class's getMonthlyEggCount method must return an int. The description of an AfricanHen should have the following format: <parent class>.getDescription() + " I come from Africa. I lay <n> eggs a month.", where <n> is the number of eggs per month (returned by the getMonthlyEggCount method. For example: I am a chicken. I come from Africa. I lay 5 eggs a month. Be sure that the Solution.HenFactory class has a static Hen getHen(String continent) method.