Using the .slice() method, complete the following code so that it returns the last 4 characters of whatever value myString holds.
a) myString.slice(myString.length - 4);
b) myString.slice(4);
c) myString + 4;
d) myString.slice(-4);