编辑代码

let arr3 = [1,2,3,4,5,6];
let isOk = arr3.every(x => {
    console.log('aaa');
    return x >5;
});
console.log(isOk)