//© A+ Computer Science - www.apluscompsci.com //Name - //Date - //Lab - import java.util.Scanner; import java.util.ArrayList; import java.util.Collections; import static java.lang.System.*; public class ArrayListFunHouse { /* *method getListOfFactors will return a list of *all of the factors of number - excluding number */ public static ArrayList getListOfFactors(int number) { //add code here return null; } }