I'm trying to prove that the following language is not regular via the Pumping Lemma. But I don't know, why is my procedure wrong (choosen word is incorrect according to my teacher).
$$L= c^+ \cdot \left\{w \in \{a,b\}^* \mid \text{count of a's in w} = \text{count of b's in w}\right\}$$
I choose word $w=c^2a^nb^n$
$$ \begin{array}{l} w = xyz \\ x = c^2a^l \\ y = a^k \\ z = a^{(n-k-l)}b^n \end{array}$$
I have choosen $i=5$: then $w = c^2a^la^{5k}a^{(n-k-l)}b^n = c^2a^{(n+4k)}b^n \implies w $ is not from $L$ because $n+4k > n$
Why is $ca^nb^n$ good choice and $c^2a^nb^n$ is a bad choice? Why I'm wrong? Thanks