Move the cards in the same order that they are going to appear in the console after the following code is executed:
function func() {
console.log('First block');
setTimeout(function f() {
console.log('Second block');
});
console.log('Third block');
setTimeout(function f1() {
console.log('Fourth block');
}, 0);
console.log('Fifth block');
}