Get average value

average = (...list) => list.reduce((a,b) => a + b) / list.length;