Multiple results
Go functions can return multiple values — no need to wrap them in a struct or use output parameters. You’ll use this constantly, especially for returning a result alongside an error.
Here, swap returns two strings and the caller unpacks them directly.