def funnyReturn(message: str) -> str:
""" Adds three stars '' on each side of a users message.
:param message: (str) The users message
:return : (str) The users message with "**" on each side.
funnyReturn('hello')
'*** hello '
"""
message = " " + 'hello' + " ***"
return message
result = funnyReturn('hello')
print(result)
it says that the str is not callable??