Edit looking at MIDI.h the last parameter is 'in array contains boundaries' which in this case should be false as is the default)
If the program change is also required then you should send that using
MIDI.sendProgramChange(0, 1); // PC to 0 on channel 1
SystemExclusive = 0xF0, ///< System Exclusive
SystemExclusiveStart = SystemExclusive, ///< System Exclusive Start
SystemExclusiveEnd = 0xF7, ///< System Exclusive End
I deduced that the SysEx message is actually everything in between the 0xF0 and the 0xF7
So that makes your message 14 bytes + start and end bytes.