package example1_2; import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import java.nio.charset.Charset; import java.nio.file.Files; import java.nio.file.Paths; import java.util.Collections; import java.util.List; import java.util.Scanner; public class ProBowlTeam { private static final String PATH = "D:\\MyDocs\\Documents\\msoe\\class\\se1021\\Labs\\logins.txt"; public static void main(String[] args) throws IOException { List lines = Files.readAllLines(Paths.get(PATH), Charset.defaultCharset()); Collections.shuffle(lines); System.out.println("Enter the number of players: "); Scanner in = new Scanner(System.in); int teamSize = in.nextInt(); for(int i=0; i