function solution(strlist) { return strlist.map(str => str.length) }
function solution(strlist) { return strlist.map(s => s.length); }