import java.util.Scanner;
import java.util.Random;

public class OOP {
    private String[] nouns;
    String[] linkingWords;

    public OOP() {
        this.nouns = {"apple", "bee", "cat", "dog", "elephant", "fish", "goose", "hare", "Io", "jackalope", "kangaroo", "lion"};
        this.linkingWords = {"and", "or", "also"};
    }

    public String getNouns() {
        return ""
    }
}
|           this.nouns = {"apple", "bee", "cat", "dog", "elephant", "fish", "goose", "hare", "Io", "jackalope", "kangaroo", "lion"};

illegal start of expression



|           this.nouns = {"apple", "bee", "cat", "dog", "elephant", "fish", "goose", "hare", "Io", "jackalope", "kangaroo", "lion"};

not a statement



|           this.nouns = {"apple", "bee", "cat", "dog", "elephant", "fish", "goose", "hare", "Io", "jackalope", "kangaroo", "lion"};

';' expected



|           this.linkingWords = {"and", "or", "also"};

illegal start of expression



|           this.linkingWords = {"and", "or", "also"};

not a statement



|           this.linkingWords = {"and", "or", "also"};

';' expected



|           return ""

';' expected