✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Fie dată secvența de cod:var arr = [10, 11, 12, 13, 14];
var i = 0;
for (; ;) {
if (i >= 5)
break;
console.log(arr[i]);
i++;}
Selectați ce se va afișa în consolă: