Promises & then/catch

What happens to a rejection if there's no catch() handler in the chain?
const promise = fetch('/api/data')
  .then(response => response.json())
  .then(data => process(data))
  .catch(error => console.error(error));
Next Question (8/21)