Push, length, indexed access.
uint256[] public nums
nums.push(n)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; contract Nums { // TODO function add(uint256 n) external { // TODO } }