I am making a program in node.js (JavaScript) and i want it to make an array with the name that is in a variable, So something like this
const name = "test"
const name = ["Contents", "Here"]; // Trying to make an array called the name
// stored in the "name" variable
Thanks!