Easy
This question is a daily question and will count towards your daily streak.
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);