If anyone could let me know how to get my intersection and difference methods to print properly. I have to use iterative loops and methods to complete this assignment so NO in built methods are to be used!Thanks

Code:
import java.util.Scanner;

public class setPractice {
	public static Scanner kbd;

	public static final int MAXSIZE = 20;

	public static void main(String[] args) {
		kbd
...