package main import ( "sort" ) func SortWordArr(array []string) { sort.Sort(sort.StringSlice(array)) } func main() { }