Wire the output enable pin to ground.
As the setup function contains all the code for outputting the data to the shift register it needs moving into the loop function.
Then add at the start of the loop function the lines:-
led[0] ^= 1; // this will blink LED 0
delay(300); // so you can see it.