Hi @Nick,
to give some extra context: all identifiers in AIMMS need to have a unique names; this holds for a parameter, a variable, a constraint, a database table etc. An index is also considered an identifier and needs a unique name so it can be referenced as such.
We recommend using clear Variable names such as Transport, InventoryLevel etc. Sets have names as Depots, Customers etc with respective indices d of Depots and c of Customers. Then the variables will become Transport(d,c) and InventoryLevel(d), a parameter could be Demand(c) and a constraint DeliverDemand(d): sum(d, Transport(d,c)>=Demand(c).
PS: You might like this blog post and how-to:
https://techblog.aimms.com/2016/09/23/set-subset-index-and-element-parameter-in-aimms/
https://how-to.aimms.com/Articles/184/184-use-multiple-indices-for-set.html