C# Error

i got 3 errors,im trying to solve them for about an hour…
1st. Assets/My Files/Scripts/Character Classes/CharacterGenerator.cs(50,15): error CS1525: Unexpected symbol private' 2nd. Assets/My Files/Scripts/Character Classes/CharacterGenerator.cs(51,80): error CS0201: Only assignment, call, increment, decrement, and new object expressions can be used as a statement 3rd. Assets/My Files/Scripts/Character Classes/CharacterGenerator.cs(51,87): error CS1525: Unexpected symbol )‘, expecting `;’

this is my script

	private void DisplaySkills() {
		for(int cnt = 0; cnt < Enum.GetValues(typeof(SkillName)).Length; cnt++); {    
			GUI.Label(new Rect(250, 40 + (cnt * 25), 100, 25), ((SkillName)cnt).ToString() );
			GUI.Label(new Rect(355, 40 + (cnt * 25), 30, 25), _toon.GetSkill                         (cnt).AdjustedBaseValue.ToString());
	    }

thx in advance…

sry for bad eng.

for(int cnt = 0; cnt < Enum.GetValues(typeof(SkillName)).Length; cnt++) { Remove the semicolon. Your also missing a closing bracket.