单项选择题

async function testAsync() { return "hello async";}let result = testAsync();console.log(result)输出结果是()

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