We can use the return value of a function like any value by calling the function. Here, we call userAge(22) to use its value.
userAge(22)
Make sure to pick userAge followed by ( and then 22, ).
userAge
(
22
)