Easy
JavaScript: Using Array.map() to Multiply Each Element by a Fixed Number
Which line of code is missing to make the following script output [6, 12, 18] in the console?
1let numbers = [2, 4, 6];2let multiplier = 3;3// Missing line here4console.log(result);