Well you could typically use:
event_id[event_id.length] = {"0":"e5"};
or (the slightly slower)
event_id.push({"0":"e5"});
though if you mean to insert an element into the middle of an array and not always on the end, then we'll have to come up with something a bit more creative.
Hope it helps,
ise