## Two can play that game ### Arguments (Continued) We have seen how to add one argument to the a function, We are now going to see how to add two (or more). Remember when `arg1` was added in the parens `()`? ```js let myFirstFunction = (arg1) => { console.log(arg1) } // Now we call the function myFirstFunction('using my first arg') // "using my first arg" ``` Well now, all we need to do to add a second argument `arg2` is to add a comma `,` after `arg1` and then add `arg2`. ```js let myFirstFunction = (arg1, arg2) => { //<-arg1 and arg2 are inputed in between the parens console.log(arg1, arg2) // ↖ arg1 and arg2 are "transfered" to be the args of console.log() } // Now we call the function myFirstFunction('first arg', 'second arg') // "first arg" // "second arg" ``` For more args, you will need to simply repeat the same process. Example with `arg3` and `arg4`: ```js let myFirstFunction = (arg1, arg2, arg3, arg4) => { // { //