## Function with many parameters On day 7 in the functions with many parameters part. There is this function which i think shouldnt be there ``` const areaOfCircle = (radius) => { let area = Math.PI * radius * radius; return area; } console.log(areaOfCircle(10)) ```