Here's a generic solution for getting the arguments one at a time. You can then put them into array cells, run code on them, whatever you please.
Code:
i=0
find . -maxdepth 1 -mindepth 1 -type d |\
while read dirname
do
i=$((i+1))
echo "Find number $i is called $dirname"
done