What does the following code return?
"Hello".padStart(6, "¡").padEnd(7, '!');
"¡¡Hello!!"
"!Hello!"
"¡¡¡Hello!!!"
"¡Hello!"