Newbie help with error

You need to say what the array should contain. For example:

type alias Model = Array Int

Or if you need different things in your array in different places:

type alias Model a = Array a

Making aliases for types other than records isn’t the best approach many times. I’d just say Array instead of Model where needed.

1 Like