Your function is declared to return only a single string, and the "return" statement returns immediately from the function with that single string, so this is what you've coded it to do.
If you want to return multiple values, then (1) you'll have to declare the function to return a slice of strings, and (2) you'll need to build up that slice, and return it at the end.