map()은 새로운 배열을 반환하니까 map을 사용해 배열의 원소들의 length가 담긴 값을 리턴
<script> function solution(strlist) { return strlist.map((e) => e.length); } </script>