Promises & then/catch

What does Promise.race() return?
Promise.race([
  fetch('/api/fast'),
  fetch('/api/slow'),
  fetch('/api/medium')
])
Next Question (7/21)