What does the await keyword do to the rest of the method after it?async Task<int> LoadAsync() { var data = await FetchAsync(); return data.Length; }