✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Яке значення матиме змінна 'numbers' після виконання цього коду?
const numbers = [];
for (let i = 3; i <= 7; i++) {
numbers.push(i);
}