If the data in the range A1:A4 is as follows:
A1:A4
Apple Banana Orange Strawberry
Then INDEX can be used to individual
INDEX
You can get this type of behavior without an array formula. In say D1
=IFERROR(INDEX($A$1:$A$4,CHOOSE(ROWS($1:1),2,3)),"")
and copy down. Note the 2,3 is buried inside the CHOOSE() function.
CHOOSE()
You can replace the 2,3 with any set of indices.