public class Biography { public static void main(String[] args) { // Instructions for this workbook are on Learn the Part (see the Udemy Video: Workbook 2.2 to access the link). // name (text) // age (whole number) // country (text) // sport (text) // hours (whole number) // game (text) // subject (text) // grade (character) System.out.println("My name is . I'm years old, and I'm from "); System.out.println("My favourite sport is . I play for hours a day"); System.out.println("When I'm tired, I like to play ."); System.out.println("In school, my favourite subject was , I scored a ."); // Compare your result to what's on Learn the Part. } }