accesing a value

hi

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

when i run this i am getting an error
command not found Queue Name

please help

change this line

echo Queue Name `$($count)`

to

echo "Queue Name $count"

it is better to use double quote with echo when u have more than 1 wards to echo

hi
in the u sent it is printing $count
but i want like 3rd or 4th argument like that

can u pls tell how u want output.