Is there a way to make a global constant array? I've tried a couple options, like:

const thearray() = ("a", "b", "c")
const thearray = array("a", "b", "c")

But cannot seem to figure out a solution. Anyone know of a way?


Thanks.