I’m trying to implement a Bubble Sort algorithm. As it says here, the “Bubble Sort is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements if they are in the wrong order.” Visual Representation ( 5 1 4 2 8 ) –> ( 1 5 4 2 8 ) So far, I have been able to identify