Number of characters in regexp type

I needed some 84 random characters in a string, and used regexp type, with value
[:alpha:]{84}

But only some 50 characters were output. I solved it using
[:alpha:]{40}[:alpha:]{44}

Is there a reason for this behavior ?