I would like to know if you can make a mutable list in java, and how it could be done. Thanks
In general, unless otherwise indicated, Java collections are mutable.
For example ArrayList has the methods add and remove to add and remove elements respectively.