## A new purpose ### Treating data in and out You know now how to declare the `arguments` and the `return` values of a function. You know have the tools to: - receive data in the function (in the form of the arguments) - treat the data (in the fonction scope) - return the treated data (with the return keyword) You can now for example, transform this function which we used right before: ```js let myFirstFunction = (continent, country, city, temperature) => { console.log(continent, country, city, temperature) } //<- end of the scope of the function // Now we call the function myFirstFunction('Europe', 'France', 'Paris', '30°C') // 'Europe' // 'France' // 'Paris' // '30°C' ``` into: ```js let myFirstFunction = (continent, country, city, temperature) => { //