How do I get the variable answerNew to loop back to the prompt screen while adding answerNew to my array in ‘myTodo’?

Basic JavaScript has proven to be tougher than teaching myself Algebra last year. With that said, my head is pounding from trying to solve the next step in my “To Do List” JavaScript prompt project.

Here is my code…

prompt(“What would you like to do: (New, List, Delete, Quit)”)
//Prompt starts our whole ‘to-do’ list function//

const New = prompt(“What would you like to add to your list?”)

//You HAVE to use ‘const’ variable in order to allow ‘New’ to produce input from the prompt().//
if (answerNew ===

let answerNew =
let myTodo = [‘Cook’, ‘Study’, ‘Work’];

… I’m trying to get the variable answerNew to loop back to the prompt screen while adding answerNew to my ‘myTodo’ array. I want the variable answerNew to be open and not defined though. Does this make sense to anybody?