To return something from a function we add the return keyword followed by the value to return, like here with return age;.
return
return age;
Make sure to pick return, followed by age, and finally ;.
age
;