//Array Reduce let arr=[12,14,15,28] let numarr=arr.reduce((h1,h2)=>{ return h1+h2 }) console.log(numarr)