public class RingAnnouncer { public static void main(String[] args) { String[] record = {"WIN", "WIN", "WIN", "LOSS", "WIN", "WIN", "LOSS"}; int wins = 0; int losses = 0; // Instructions for this workbook are on Learn the Part (Workbook 6.7). System.out.println("\nWith a professional record of Wins and losses."); System.out.println("He is the pride of oracle: Java Fury!"); } }