What will be the result of the following code execution:
import java.io.PrintStream;
public class Test {
public static void main(String[] args) throws Exception {
System.class
.getField("out").getType()
.getMethod("println", String.class)
.invoke(new PrintStream(System.err), "Hello!");
}
}