Random generated string every frame?

Hello. I want to do a random string every frame how can i do that? it should look like this:

asd@gjk1@ <-------- String is changing every frame to something random like the example text.

Similar to Brute-Force Attack.

Thanks i hope someone can help me solve this question.

Did you try writing your own function?

	public string RandomString(int length = 32)
	{
		string result = "";

		for (int i = 0; i < length; i++)
		{
			result += (char)Random.Range(33, 126);
		}
		
		return result;
	}