1/*Gathering input from the user requires the following setup:*/
2
3const input = require('readline-sync');
4
5let info = input.question("Question text... ");
6
7// example //
8const input = require('readline-sync');
9
10let name = input.question("Enter your name: ");