Matrix of type textbox?

Hey, I want to store my instances of Makie.Textbox in a matrix of size m=(L,L) where L is an integer.
The ideal situation would be:

matrix = zeros(m, Makie.Textbox)
for ...
  #assign different parts of the matrix to different textboxes
end

Unfortunately, that zeros function doesn’t work. It feels weird to make a custom zeros function that creates a new figure, and makes each “zero” textbox be inside of that figure. Is there a better way to do this?
Thank you!

zeros doesn’t make sense here because the array is not numeric. Just do

matrix = Array{Makie.Textbox}(undef, m)

to allocate an uninitialized 2d array.