function example() { console.log(arguments); console.log(arguments[0]); } // Console outputs an array of each argument with its value example('hi', 'hello'); // Outputs: // ['hi', 'hello'] // 'hi'