In this example, I'd expect the order in the data pane to be the same as the order in the code, but it's reversed. ``` R profvis({ # Make copies of pause function, with different names pause2 <- pause pause3 <- pause pause(0.1) pause2(0.1) pause3(0.1) }) ``` 