Why does the following code print "Bo-Bo Go-Go", instead of "Bo-Bo Hello, World! Go-Go?
public class Test {
    static {
        System.out.print("Bo-Bo ");
    }
    public static void main(String[] args) {
       System.out.print("Hello, World! ");
    }
    static {
        System.out.println("Go-Go ");
        System.exit(0);
    }
} 
 
     
    