const array = [1,2,3,4,5,6,7,8]
const filterArray = array.filter(a => a > 4)
console.log(filterArray)
// [5,6,7,8]