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