@totti93 Daca tot esti pus pe ajutat, mai am o problema Deci, cerintele sunt: Write a for loop that prints out numbers 100 through 150. The test will fail, but you can check the console to make sure you did it right. Now, inside the block, change your code so you are calculating the square of i and store it in the variable square. Use multiplication to calculate the square, not the ^ character. Change the console.log statement so it outputs the square instead of i. Save the world. Eu am facut codul asta: var square=(Math.sqrt(i)); for (var i=100; i<=150; i++) { console.log(square); } Dar imi arata: Oops, try again. Make sure you're 1) starting the loop on 100 and 2) squaring it. Ai vreo idee? Multumesc mult pt indrumari