I want to calculate the variance of the maximum likelihood estimator of a Rayleigh distribution using $N$ observations.
The density probability function of this distribution is :
$$ f(\sigma,y_i) = \frac{y_i}{\sigma^2} e^{-\frac{y_i^2}{2\sigma^2}} $$
I also know that the mean is $\sigma \sqrt{\frac{\pi}{2}}$, its variance is $\frac{4 - \pi}{2}\sigma^2$ and its raw moments are $E[Y_i^k] = \sigma^k 2^{\frac{k}{2}}\Gamma(1+\frac{k}{2})$. Knowing this, I was able to calculate the maximum likelihood estimator $\hat{\sigma}^{2,ML} = \frac{\sum_{i=1}^{N} y_i^2}{2N}$
I calculated the mean of this estimator : $m_{\hat{\sigma}^{2,ML}} = E[\frac{\sum_{i=1}^{N} y_i^2}{2N}] = \frac{2N \sigma^2}{2N} = \sigma^2$ knowing that $E[y_i^2] = \sigma^2 2 \Gamma(2) = 2\sigma^2$.
For the variance, however, I do not see how to do it. I have tried to do as follows:
$$ Var(Z) = E[Z^2] - E[Z]^2 = E[(\frac{\sum_{i=1}^{N} y_i^2}{2N})^2] - E[\frac{\sum_{i=1}^{N} y_i^2}{2N}]^2 = \frac{1}{2N} E[(\sum_{i=1}^{N}y_i^2)^2] - \sigma^4 $$
My problem is that I do not know how to calculate $E[(\sum_{i=1}^{N}y_i^2)^2]$. Could someone give me a hint?