What Did I Learn? In this challenge I learned: How to create a dict with the number of times each number appears frequencies = {} for num in nums: if num in frequencies: frequencies[num] += 1 else: frequencies[num] = 1 Discovering the highest frequency (using the Max function to compare 2 numbers). max_frequency = 0 for frequency in frequencies.values(): max_frequency = max(max_frequency, frequency) Seeing how many times the greatest frequency is repeated in the dict frequency_of_max_frequency = 0 for frequency in frequencies.values(): if frequency == max_frequency: frequency_of_max_frequency += 1