public class Points { public static void main(String[] args) { // Instructions for this workbook are on Learn the Part (see the Udemy Video: Workbook 2.1 to access the link). int points = 0; System.out.println("Harry was caught wandering the halls. -50 points for Gryffindor"); //update points here System.out.println("Harry was being cheeky in class. -3 points for Gryffindor"); //update points here System.out.println("Hermione got full marks on Lockhart's quiz. 30 points for Gryffindor"); //update points here System.out.println("Ron won the underground chess game. 100 points for Gryffindor"); //update points here System.out.println("Harry defeated Quirrell. 60 points for Gryffindor"); //update points here // Compare your result to what's on Learn the Part. } }