```js const files = ["A", "B", "C", "D", "E", "F", "G", "H"]; ``` When we have variables with static values, for more readability, you can capitalize the name like: ```js const FILES = ["A", "B", "C", "D", "E", "F", "G", "H"] ```