Current code ```go func checkOS() string { chrome := "" if runtime.GOOS == "windows" { chrome = "chrome" } else if runtime.GOOS == "darwin" { chrome = "Google Chrome" } return chrome } ```
Current code