diff --git a/Chapter 6/ex4 b/Chapter 6/ex4 deleted file mode 100644 index 3c7ce2c..0000000 --- a/Chapter 6/ex4 +++ /dev/null @@ -1,15 +0,0 @@ -const adj = ["super", "wonderful", "bad", "angry", "careful"]; - - - -function myFun() { - - const question = prompt("what is your name?"); - - const nameAdj = Math.floor(Math.random() * adj.length); - - console.log(adj[nameAdj] + " " + question ); - -} - -myFun();