Hi all, I completed the exercise but I'm wondering why we are using the text "m2" to find the minimum? public class Solution { public static int min(int a, int b) { int m2; if (a < b) m2 = a; else m2 = b; return m2; }