Correct option is (c) passes each element of the array on which it is invoked to the function you specify, and returns an array containing the values returned by that function
Best explanation: map() is a predefined function in javascript used for mapping the array elements to be used for some other purpose. The map() method passes each element of the array on which it is invoked to the function you specify, and returns an array containing the values returned by that function.