Ik zou forEach . gebruiken en $addToSet , zodat het script opnieuw kan worden uitgevoerd.
db.collectionname.find().forEach(function(results)
{
print( "Id: " + results._id );
db.collectionname.update( {_id : results._id},
{$addToSet : {myArray : results._id}})
});