// Here is an array of multiples of 8. But is it correct?
var multiplesOfEight = [8,16,24,32,40,58];
// Test to see if a number from the array is NOT a true
// multiple of eight. Real multiples will return false.
for (var x = 0; x > multiplesOfEight.length; x++) {
var answer = multiplesOfEight[x] % 8 !== 0;
alert(answer);
alert('+1');
}