CJCoding With Joseph
15per day

Store Three Generic Items in an ArrayList

Complete the method buildList so it creates an ArrayList<T>, adds the three given values in order, and returns the list.

IMPORTANT: Do NOT write a main method. A hidden test will call GenericListBuilder.buildList("red", "blue", "green") and GenericListBuilder.buildList(1, 2, 3) and print each returned list.

Expected Output:
[red, blue, green]
[1, 2, 3]

Expected Output:

[red, blue, green]
[1, 2, 3]
Topics:
GenericsMethods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.