how to display loop times in playground

I want to get the loop times info in playground. But it seems to only display the latest result for a loop on the right side. Do I miss anything? Xcode 15.0.1

import Cocoa

for i in 1...5{
    print("\(i)")
}

I have a screenshot:

The view on the right side only displays the current or the latest result of an expression. To see the output of a print statement you have to open the console in Xcode.

for i in 1...5{
    print("\(i) times")
}
how to display loop times in playground
 
 
Q