有哪位大佬能告诉我哪出错了吗?
package com.imooc;
import java.util.Arrays;
public class HelloWorld {
public static void main(String[] args) {
String hobbies[]={"movie","game","sports"};
Arrays.sort(hobbies);
foreach(String hobby:hobbies){
System.out.println(hobby);}