arr.reduce((a, b)=> a.length > b.length ? a : b);
let longStr = arr.reduce((x,y)=> x.length > y.length ? x:y)