:    @possWords = push(@possWords,$temp) ;

This line is the problem. push() returns the number of elements in the
array after the new elements have been pushed onto it. Get rid of the
"@possWords = " part of this line.

-- tdk

Reply via email to