Creating a function of the sum of two numbers const addNumbers =(a,b) =>{ return (a+b); }; const a = 10; const b = 5; console.log(addNumber(a,b);