getting a public class error

hi I trying to find out what i did wrong in this script.
i keep getting this error

Assets/Scripts/Character Classes/CharacterGenerator.cs(5,1): error CS1041: Identifier expected: `public’ is a keyword

and it points to this line in the script

using UnityEngine;
using System.Collections;
using System //using for Enum class

public class CharacterGenerator : MonoBehaviour {

i tried to look around but i couldn’t figure out how to correct this error. I tried the documentation on unity and tried rewriting the script but I still get this error.

If anyone could help. I am quite new to scripting.

You forgot a semicolon ; at the end of last using statement.

using UnityEngine;
using System.Collections;
using System; //YOU FORGOT SEMICOLON HERE!<<<<<<<<<<<<<<<<<<<<<<<<<<<<

public class CharacterGenerator : MonoBehaviour {

Thank you so much. i can’t believe i miss that.