📑 TOMLmedium
6. Arrays
Write a top-level key `ports` set to an array of the three NUMBERS 80, 443, and 8080.
How to approach this
Arrays are `[a, b, c]` — comma-separated, in square brackets. The elements keep their types: `[80, 443, 8080]` is three numbers, whereas `["80", "443"]` would be three strings. A trailing comma is allowed.
config.toml