I know how to find the square root of a number,
let square=9;
const squareRoot=square.Math.sqrt(square);
console.log(squareRoot);
but I don't know how to find the square root of an array of squared numbers like
[1, 4, 9, 16, 25]
can someone please help?