What is the type of the variable returned by an async method declared as 'async Task<int>'?async Task<int> GetValueAsync() { await Task.Delay(10); return 42; } var result = GetValueAsync();