javaScript async wait не ждать

// You Final Call Needs To Be
MyPromise().then(response => console.log(response));
// or
(async () => console.log(await getResult()))()
Undefined