During a period of $n$ days, two persons drink beers, one each. There are $n$ different beers $B_1, B_2, B_3,\ldots, B_n$, where $n\geqslant 1$ is an integer. t Person1 drinks the beers in order, i.e., on the $i$-th day, she drinks beer $B_i$. Person2 takes a uniformly random permutation $a_1, a_2, \ldots, a_n$ of the set $\{1, 2,\ldots, n\}$ and drinks beer $B_{a_i}$ on the $i$-th day. Let $X$ be the random variable whose value is the number of days during which person 1 and person 2 drink the same beer. Determine the expected value $\mathbb E(X)$ of $X$. I know that I should let $X$ be the number of days during which both persons drink the same beer. And $$ X_i = \left\{\begin{array}{rc} 1,&\text{if they drink the same beer on the }i\text{-th day} \\ 0,&\text{if they drink different beers on the }i\text{-th day}\end{array}\right. $$
Then $$\begin{align} \mathbb E[X_i] &= 1\cdot P(X=1) = P(\text{Person 1 and Person 2 drink beer }i) \\&= P(\text{Person1 drinks beer }i)P(\text{Person 2 drinks beer }i) \\ &= 1\cdot P(\text{Person 2 drinks beer }i) = \frac{1}{(n-i)!} \end{align}$$
So, is my approach right? If it's will the next step be: $\mathbb E(X) = n\cdot\frac{1}{(n-i)!}$?