Easy
This question is a daily question and will count towards your daily streak.
Which line of code will correctly modify the following snippet to ensure the output is "The result is: 8"
1function calculate(a, b, callback) {2 return callback(a, b);3}45let result = calculate(3, 5, /* Missing Line Here */);6console.log(`The result is: ${result}`);