// Arup Guha
// 4/28/2018
// 2016 AP Computer Science FRQ Question 1B - RandomLetterChooser Framework

import java.util.*;

public class RandomLetterChooser extends RandomStringChooser {

	/*** Fill in your solution to part A here ***/
	public RandomLetterChooser(String word) {
		
	}

	// Returns each letter of str in a string array (one letter as a string) per string.
	/*** Fill in your solution to part B here ***/
	public static String[] getSingleLetters(String str) {

	}

	// A little test.
	public static void main(String[] args) {
		RandomLetterChooser mine = new RandomLetterChooser("category");
		for (int i=0; i<10; i++)
			System.out.print(mine.getNext()+" ");
		System.out.println();
	}
}
