function callIt(fn) {

const filterArg = [...arguments].slice(1)

return fn(...filterArg)

}