// Token: 0x060014D8 RID: 5336 RVA: 0x000B72BC File Offset: 0x000B54BC
 public static IntAndIntPair[] KeysOfTopicLearnedByStudent()
 {
     KeyValuePair <int, int>[] keys  = KeysHelper.GetKeys <int, int>("Profile_" + GameGlobals.Profile + "_TopicLearnedByStudent_");
     IntAndIntPair[]           array = new IntAndIntPair[keys.Length];
     for (int i = 0; i < keys.Length; i++)
     {
         KeyValuePair <int, int> keyValuePair = keys[i];
         array[i] = new IntAndIntPair(keyValuePair.Key, keyValuePair.Value);
     }
     return(array);
 }