Required Exercise Functions Part 3
Create a function named fullNameAndAge that accepts 3 parameters called firstName, lastName and age.
Within fullNameAndAge, call the fullName function by passing in firstName and lastName variables as parameters into it and store the result of that function in a variable named result.
Now return the full name as the age separated by a comma and a space. (e.g fullNameAndAge(“Jane”, “Doe”, 23) would return 'Jane Doe, 23'
![Required Exercise Functions Part 3 Create a function named fullNameAndAge that accepts 3 parameters called firstName lastName and age Within fullNameAndAge call class=](https://us-static.z-dn.net/files/dc6/d60cd9057afa1660cba34a31c2058a23.jpg)