Returning Values in Swift

Any chance somebody knows how to solve this? I'm a beginner and need to see how people approach this so I can learn.

You have a function definition there rather than a function call. In the function definition you need to write the type of the thing you expect (Int) rather than any specific instance of that type (4).

Later, when you call the function you have written you'll pass in 4.

Returning Values in Swift
 
 
Q