async function loadDashboard(userId) { const [user, orders, notifications] = await Promise.all([ fetchUser(userId), fetchOrders(userId), fetchNotifications(userId) ]); return { user, orders, notifications }; }