im getting uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
error when adding array to linkedlist
Here is my work
LinkedList main_list = new LinkedList();
int arr = new int[2]
arr[0] = 0;
arr[1] = 1;
main_list.add(arr);