Easy
This question is a daily question and will count towards your daily streak.
What will be the result of the following code, and why? javascript Copy code
1let colors = ["blue", "green"];2let result = colors.unshift("red", "yellow");3console.log(result);4console.log(colors);