function callIt(fn) {
	let arr = Array.from(arguments)
    arr.shift()
    return fn(...arr)
}