Given these digits as a whole entire card number, 1234567812345678, which one of the following statements displays the last five digits of the card number?
1) LEFT(CardNumber, 12, 5)
2) RIGHT(CardNumber, 5)
3) SUBSTRING(CardNumber, 12, 5)
4) MID(CardNumber, 12, 5)