write a function called map2 that takes a function f and 2 lists 11 and 12 and returns the list that is produced by applying the function to one element from each of the lists in turn. For example, the code (in some made-up Javascript-like language): function add (a1,a2) return a1+a2;} map2 (add,[1,2,3], [4,5,6]) Smalltalk: Elixir: askell: Rust: Show transcribed image text write a function called map2 that takes a function f
OR
OR