IE 11中的控制台

Chrome中的控制台

如果我将循环中的单词'item'更改为'anotherItem',就像这样
var obj = {
id1: 'item 1',
id2: 'item 2',
id3: 'item 3'
};
for (anotherItem in obj){
console.log(anotherItem);
}
Run Code Online (Sandbox Code Playgroud)
循环工作正常
为什么IE 11不处理单词'item'