What would be the output of the following program ?

Practice Command Line Arguments –
What would be the output of the following program ?
class test {
public static void main(String[] args) {
for(int i=0;i<=args.length;i++);
System.out.println(args[i]);
}
}