Needed example of .toStringArray()

import java.util.Arrays;
  String[] words = {"go", "to ", "school"};
 println(Arrays.toString(words));  //print [go, to , school] 
 printArray(words);
//print
// [0] "go"
//[1] "to "
//[2] "school"