creating a delimiter string

hi
i have a function

printValues()
{
var=$#
count=0
qName=""
while [ $count -lt $var ]
do
         if [ $count = 0 ]
        then
            echo QManager Name $1
        fi
        if [ $count = 1 ]
        then
             echo Cluster Name$2
        fi
        if (( $count != 0  && $count != 1 ))
        then
             echo Queue Name  $count
        fi

        count=`expr $count + 1`
 done
}

QManager Name LPDMA520
Cluster NameESBUSCLT01
Queue Name 2
Queue Name 3
but i want Queue Name as 3rd and 4th args

please help