单项选择题

var fun = function fn(){
return;alert(12);
};
console.log(fun());打印结果是()

A.弹出12
B.程序报错
C.null
D.undefined