Here is a function description:
func Greeting(prefix string, name ...string) []string {...}
You need to write the code of a function that returns a slice of strings. Every string should have the following structure: prefix + whitespace + name.
For example:
Greeting("Hello,", "Rick", "Morty") // [Hello, Rick Hello, Morty]
In the input, you get three strings. The first string is a prefix, the other two are names. You need to output the result that the function returns line by line.