export default function capitalizeWords(sentence) {
  // TODO: Capitalize first letter of each word
  throw new Error('Not implemented');
}
Run tests to see results.