多项选择题

下面代码的运行结果是:第一次弹()第二次弹( )
function fn1() {
alert;
}
alert( fn1() );

A.1
B.alert(1);
C.functionfn1(){alert(1);}
D.undefined