单项选择题

function age(x,y){console.log(this+x)}age.call(’world’,10,20);以上代码片段的输出结果是什么?()

A.world10
B.undefined
C.报错
D.30