Chagned to verb-noun instead of noun-verb

This commit is contained in:
Malcolm Roberts 2024-02-15 21:36:33 +00:00
parent b7b4f799e7
commit 77d25f2a11

View File

@ -44,7 +44,7 @@ func main() {
}
randomNounIdx, _ := rand.Int(rand.Reader, big.NewInt(int64(len((nouns)))))
randomVerbIdx, _ := rand.Int(rand.Reader, big.NewInt(int64(len((verbs)))))
var username = fmt.Sprintf("%s-%s", nouns[randomNounIdx.Int64()], verbs[randomVerbIdx.Int64()])
var username = fmt.Sprintf("%s-%s", verbs[randomVerbIdx.Int64()], nouns[randomNounIdx.Int64()])
output.WriteString(username)
}