sum = function(...args) { return args.filter(num => num % 2 !== 0).reduce((acc, num) => acc + num, 0); }