Currently while solving exercise question I came to this one which is stated as follows:
A bag contains $5$ black and $6$ red balls. Determine the number of ways in which $2$ black and $3$ red balls can be selected from the lot.
Now my logic while solving this was that since the balls of the same color are 'indistinguishable' therefore the selection of any pair would be indistinguishable leading to just $1$ distinct selection. Whereas the answer is equal to $${5\choose2} \times{6\choose3}= 200$$ which would be obvious if the balls were somehow distinguishable.
So where am I going wrong?