Hi. I'm getting an error on the index 1 of my code : Binary operator '+' cannot be applied to operands of type '()' and 'String'
. The code block is the following
func addDance (_ sentence: String) {
return addDance(sentence: String) + " and then we dance"
}
The instruction of the exercise I'm doing is the following : «Create a function addDance that takes a string, appends a phrase about dancing (like "and then we dance!" or "but no dancing", according to your taste), and returns the new string.
Call the addDance function passing in myPlans, and assign the result to friendPlans. »