So hi guys I am going throught the Algorythms certification and I am kinda stuck…
I have rapidly seen the solution from the get a hint option and I see that I have understood correctly the use of 2d ARRAY etc. SO… in order to not give in and see in a detailed manner the correct answer could you gimme a hand 
function largestOfFour(arr) {
var max;
var b = new Array(); //max array
for(let j=0;j<arr.lenght;j++){
max=-9999;
for(let i=0;i<arr[j][i].length;i++){
if (max<arr[j][i]){ max=arr[j][i];}}
b[j]=max;
}
return b;
}
largestOfFour([[4, 5, 1, 3], [13, 27, 18, 26], [32, 35, 37, 39], [1000, 1001, 857, 1]]);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36 OPR/56.0.3051.99.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-algorithm-scripting/return-largest-numbers-in-arrays