Adding the 'Array.prototype.find' script - under IE11 - causes 'find' to be returned as a key when looping through any array, even an empty one.
var x = []; for( var key in x ) console.log(key);
The above code logs 'find' to the console, only when the shim is added however. I suspect looking at the code that other array shims will have a similar impact.