I have a document structured like this:
{ _id:\"43434\", heroes : [ { nickname : \"test\", items : [\"\", \"\", \"\"] }, { nickname
db.collection.update( { heroes:{$elemMatch:{ "nickname" : "test"}}}, { $push: { 'heroes.$.items': { $each: ["new_value" ], $position: 1 } } } )