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
Check out the set(int index, E element) method in the List interface
set(int index, E element)