class Student {
	
	static enrollment(){
			return 'static method'
	}
}

const firstStudent = new Student();
firstStudent.enrollment() // error