//I do nothing with the giving code, but it can pass the verify
function loadUsers(userIds, load, done) {
var users = []
for (var i = 0; i < userIds.length; i++) {
users.push(load(userIds[i]))
}
return users
}
module.exports = loadUsers

The verify process may not correct.