I am trying to store the numbers that are divisible by three in the threes array. How is this done?
var numbers = [1,2,3,4,5,6,7,8,9];
var threes = [];
var iLoveThree = function(numbers,threes){
    for(i in numbers){
      if(i.value % 3 == 0){
        threes.push([i]);
        console.log(threes);
      } 
    } return threes
};
iLoveThree();
 
     
     
     
    