Course · Section 11: Working With Arrays · Lecture 156: Data Transformations: map, filter, reduce
Implement `wordLengths(words)` returning the length of each string, using `map`.
+ 1 hidden test run on Submit.
map turns the list of strings into a list of their lengths.
Run your code to see results.