# Minor print bug of nested arrays

**URL:** https://discourse.julialang.org/t/minor-print-bug-of-nested-arrays/19936
**Category:** Internals & Design
**Tags:** question
**Created:** [January 22, 2019, 4:10pm UTC](https://discourse.julialang.org/t/minor-print-bug-of-nested-arrays/19936 "2019-01-22T16:10:21Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Tamas\_Papp](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/tamas_papp/32/25949_2.png) [@Tamas\_Papp](https://discourse.julialang.org/u/Tamas_Papp)
#### Post date: [January 22, 2019, 4:10pm UTC](https://discourse.julialang.org/t/minor-print-bug-of-nested-arrays/19936/1 "2019-01-22T16:10:21Z")

</div>

I could not find an issue for this, checking here before opening one (the problem is with the last output):

```julia
julia> VERSION
v"1.2.0-DEV.192"

julia> A = collect(reshape(1:24, 2, 3, 4))
2×3×4 Array{Int64,3}:
[:, :, 1] =
 1 3 5
 2 4 6

[:, :, 2] =
 7 9 11
 8 10 12

[:, :, 3] =
 13 15 17
 14 16 18

[:, :, 4] =
 19 21 23
 20 22 24

julia> [A]
1-element Array{Array{Int64,3},1}:
 [1 3 5; 2 4 6]

[7 9 11; 8 10 12]

[13 15 17; 14 16 18]

[19 21 23; 20 22 24]

```
