Please write code that prints out an array of numbers containing 1 through 100 ([1,2,…,100]) and says whether the number is divisible by 4 or 7. Please use .map or .filter if possible
let array = [];
for (let i = 1; i <= 100; i++) {
array.push(i);
}