I'm testing the for...in loop in javascript like this:
let test = ["hello"];
for (let index in test) {
  console.log(index);
}With this example, in Chromium this prints something like this:

And in Firefox and Chrome the result is this:

Can someone explain why get different outputs in this case?
 
    