It is easy to create an endless loop by mistake. What should we add to the code block of the loop below to prevent it from being an endless loop? Select ALL answers that will work (together if necessary) to prevent the loop from being an endless loop.
var x = 1;
while (x > 0){
(x);
}
a) A break statement
b) x = Math.floor(Math.random() * 10) +1;
c) x++
d) An IF statement to check if x > 50