Create a class that takes the following four arguments for a particular football player:
nameageheightweightAlso, create three functions for the class that returns the following strings:
getAge() returns "name is age age"getHeight() returns "name is heightcm"getWeight() returns "name weighs weightkg" p1 = new Player("David Jones", 25, 175, 75)
p1.getAge() ➞ "David Jones is age 25"
p1.getHeight() ➞ "David Jones is 175cm"
p1.getWeight() ➞ "David Jones weighs 75kg"
name will be passed in as a string and age, height and weight will be integers.