const array1 = [1, 2, 3];

console.log(array1.unshift(4, 5));
// Очікуваний вивід: 5

console.log(array1);
// Очікуваний вивід: Array [4, 5, 1, 2, 3]