let numbers = [ 1, 2, 3 ] let myFunction = (x, y, z) => { return x + y + z; } // Returns 6 let getCalculation = myFunction(...numbers);