Print elements of vector without the braces

Many times I want to output a simple data table from a vector, like in this MWE: julia> for i in 1:5 println(rand(3)) end [0.6125928743733668, 0.36073254544716105, 0.5008360754548771] [0.04295309867553865, 0.2695746137499093, 0.8300907403333446] [0.583606126726895, 0.35685598691093…