findShort(s) { try { return Math.min(...s.split(' ').map(o => o.length)); } catch (error) { return null } }