Performance Optimization Techniques

What performance issue can arise from the following code pattern?
Promise.all([
  fetch('/api/users').then(res => res.json()),
  fetch('/api/products').then(res => res.json()),
  fetch('/api/orders').then(res => res.json())
]).then(([users, products, orders]) => {
  // Process data
});
Next Question (33/40)