1
10 20
2
10 undefined
3
4
10,20
5
function test4(a, b){
6
print(arguments[0] + "," + arguments[1]);
7
print(arguments.callee);
8
}