单项选择题

async function testAsync1() { console.log(“hello async”);}let result1 = testAsync1();console.log(result1); ()

A.Promise {[[PromiseStatus]]: "resolved", [[PromiseValue]]: "hello async"}
B.hello async
C.hello asyncPromise {[[PromiseStatus]]: "resolved", [[PromiseValue]]: undefined} 
D.报错