I got this code and I get { prize: 'Run' }, but I want to get "Run"
const inquirer = require("inquirer");
inquirer
.prompt([
{
type: "list",
name: "prize",
message: "What do you want to do",
choices: ["Run", "Settings",]
}
])
.then((answers) => {
console.log(answers);
});