let add = function (num1,num2){
  
  return num1+num2

}

let sum=add





let result=sum(5,6)






console.log(result) 
by