Given the table:
What is the output of the following code?
try (ResultSet ships = statement.executeQuery("SELECT * FROM SHIPS")) {
ships.next();
String id = ships.getInt("ID");
String name = ships.getString("Name");
String fate = ships.getString("Fate");
System.out.println(fate);
}