f05e4bc37a
29e4101818
@ -106,7 +106,6 @@ Creating a new array based on the existing array
```js
const numbers = [1, 2, 3, 4, 5]
const newArr = []
let sum = 0
for(let i = 0; i < numbers.length; i++){
newArr.push( numbers[i] ** 2)