Debugging sayHello function The starship Enterprise has run into some problem when creating a program to greet everyone as they come aboard. It is your job to fix the code and get the program working again! Example output: Hello, Mr. Spock Solution: class SayHello: def __init__(self): self.__hello = "Hello" def say(self, name): return f"{self.__hello}, {name}" say_hello = SayHello().say