//Simple Function to add two numbers const addTwoNums = (num1, num2) => { let sum = num1 + num2; return sum } console.log(addTwoNums(60, 9)) //function call and log the answer to the console