function findShort(s) { return Math.min(...s.split(" ").map (s => s.length)); // minimum return Math.max(...s.split(" ").map (s => s.length)); // max - optional }