export default function sum(arr) {
  // TODO: Return the sum of all numeric elements, ignoring non-numbers
  throw new Error('Not implemented');
}
Run tests to see results.