const findShort = str => {
// Convert string into an array of individual words:
const arr = str.split(' ');
// Sort array in ascending order:
arr.sort((a, b) => a.length - b.length);
// Return the first (shortest) element in the array:
return arr[0];
};