why
The server could not be reached and your progress may not be saved.
after run
function checkPositive(arr) {
// Only change code below this line
return arr.every((value)=>{
return value>0;
});
// Only change code above this line
}
checkPositive([1, 2, 3, -4, 5]);