I know I can use %w() as a shortcut to create an array. E.g. these should be equivalent:
FOO = %w(dog, cat) BAR = ["dog", "cat"]