Do we want to automatically throw ourselves and stick with ```javascript let result; try { result = whitelister.sync(rules, params); } catch (e) { // handle error } ``` or should we avoid the try block and let users deal with it as they please in the form of ```javascript const [err, result] = whitelister.sync(rules, params); ```