Concept Flow - Await keyword behavior
Start async function
Encounter await
Pause function execution
Wait for Promise to resolve
Resume function with resolved value
Continue remaining code
Function completes
The async function pauses at await until the Promise resolves, then resumes with the resolved value.