package words import ( "math/rand/v2" "strings" ) func GetRandomWord() string { // https://stackoverflow.com/a/22876612/16804841 return strings.ToLower(Words[rand.IntN(len(Words))]) }