This is wrong because it treats {Eagles, Cowboys, Giants} as a separate list from {Cowboys, Giants, Eagles} even though they are identical, just different order.
This is a n choose k problem, so formula is (n!) / (n-k)!(k)! (where n = 32, k = 3). Solution is 4960.