function spinWords(words){ return words.split(' ').map(w => w.length < 5 ? w : w.split('').reverse().join('')).join(' '); }