List.map : (a -> b) -> List a -> List b is a higher-order function that applies a one-parameter function to each element of a list, returning a new list with the modified values.
import String
ourList : List String
ourList =
["wubba", "lubba", "dub",...