I am trying to solve the following question and my logic seems correct but my answer is not matching.
"In how many ways can letters of the word $\text{CALENDAR}$ be arranged so $\text{C}$ and $\text{A}$ are together as well as $\text{N}$ and $\text{D}$ are together?"
Question: What is wrong or missing in my logic explained below?
My Logic
We start with $8$ empty spots along a straight line and fill them by performing the three actions below one after the other.
Action 1 - First Place $\text{C}$ and $\text{A}$ together : $7 \times 2! = 14$.
Action 2 - Then Place $\text{N}$ and $\text{D}$ together after $\text{C}$ and $\text{D}$ have been placed : $5 \times 2! = 10$.
Action 3 - Finally, Place other $4$ different characters in remaining $4$ spots : $4!$
So, total number of ways using Product Rule is $14 \times 10 \times 4! = 3360$
There is something wrong with my logic since the book says $2880$ is the answer.