Create classes CatRecord, DogRecord and BirdRecord that inherit from (extend) the PetRecord class located on Canvas.
Add an integer variable wingspan to BirdRecord, and a Boolean variable hasLongHair to CatRecord and DogRecord. Create appropriate setter and getter methods for each. Also, create constructors that can set all of the values for a cat, dog or bird by setting the values specific to that animal.
Create a main to test out your work and show that your new classes work correctly. Do NOT modify the PetRecord class.