The number of permutations is 6.
This is a combinations problem where the order of selection does not matter.
To calculate the number of ways to choose 2 items out of 3 distinct items, the formula is:
\[C(n, k) = \frac{n!}{k!(n-k)!}\]
\[C(3, 2) = \frac{3!}{2!(3-2)!}\]
\[C(3, 2) = 3\]
The number of combinations is 3.