function useArguments() {
var total = 0
var a = [...arguments]
a.forEach(e=>{
total+=e
})
return total
}