Hi Shannon,
Impala does not yet support array or map subscripts. What you can do is something like this:
select a.value from mytable t, t.myarray a where a.pos in (0,1)
But this will give you the "values" elements as rows and not in different columns.