I need help with this java please. I created an ArrayList of bulbs, and I\'m trying to replace a bulb at specific index with another bulb. So with the following heading, how
Use the set() method: see doc
set()
arraylist.set(index,newvalue);