since I have the code below
public class student
{
public enum Level
{
novice,
adept,
master
}
private Level _skillevel;
public student()
{
_skillevel =
//to assign a random value from novice, adept and master
}
what I expect is that each time a student object created, it will be assign a random skill level. How could I exeucte it? thanks for helps.