The following are equivalent, except that the first is longer and invokes an extra function call. ``` return new Promise(function(resolve, reject) { reject(new Error("Unknown Group")); }); return Promise.reject(new Error("Unknown Group")); ```