单项选择题

function run() { this.type ='宝马';}function Mc() {run.call(this)};var c = new Mc();console.log(c.type)打印结果是?()

A.程序报错
B.宝马
C.null
D.undefined