$ERROR('#1: Array.prototype.myproperty = 1; var x = new Array(); x.myproperty === 1. Actual: '+(x.myproperty));
}
//CHECK#2
if(x.hasOwnProperty('myproperty')!==false){
$ERROR('#2: Array.prototype.myproperty = 1; var x = new Array(); x.hasOwnProperty(\'myproperty\') === false. Actual: '+(x.hasOwnProperty('myproperty')));