## Two can play that game ### More Arguments We have seen how to add one argument to the a function, We are now going to see how to add two (or more). 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) => { // { // Example: calling: `duos('Batman', 'Robin')` should log : `Batman and Robin !` You will then declare the function `duosWork`. This function will take three arguments and will log them togethers as in the example below. > Example: calling: `duosWork('Batman', 'Robin', 'protect Gotham')` should log : > `Batman and Robin protect Gotham !`