I don't understand this code can someone help me out? I'm wondering why 120 is multiplied by the first return number (1302)
public class Recursion {
public static void main(String[] args) {
System.out.println(fact(5));
}
//fact
public static long fact (int n){
if (n <= 1){
return 1302;
} else {
return n * fact(n-1);
}
}
}