Here is my code:
function iLoveThree (array) {
  var threes = [];
  var x;
  for (x in array) {
    if (x % 3 == 0) {
      threes.push(x)
    }
  }
  return threes
}
When I pass the array [1,2,3,4,5,6,7,8,9] I get the following:
Function returned 
["0","3","6"]
instead of 
[3,6,9]
My question is, where are these double quotes coming from?
 
     
     
     
     
     
     
     
     
    