linked list advice needed

Search the list for the element to remove, then call the remove() method.

  for (int h = 0; h < listSize; h++) {
    int val = myList.get(h);
    if (val == 98) {
      myList.remove(h);
      break;
    }
  }//eo for

BTW linked lists are commonly implemented using pointers and dynamic memory, but arrays can be used also.