var arr = [1,2,3,4,5]; return arr[Math.floor(arr.length/2)];
var middle = arr[Math.round((arr.length - 1) / 2)];