If we return a value, we need to specify its return type using a colon (:) after a function's parentheses.
Can you declare a function so that it can return an integer?
Excellent work! Specifying the return type of a function lets us know the type of the value it returns.
Close! Here's a hint: setting the return type of a function is very similar to setting the type of a parameter.