Advertisement
Guest User

Untitled

a guest
Jul 19th, 2014
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function soothsayer() {
  2.     function random(){
  3.         return  Math.floor((Math.random() * 4) + 1)
  4.     }
  5.     console.log("You will work %s years on %s.\nYou will live in %s and drive %s.",arguments[0][0][random()]
  6.         ,arguments[0][1][random()],arguments[0][2][random()],arguments[0][3][random()]);
  7. }
  8. soothsayer([[3, 5, 2, 7, 9],["Java","Python", "C#","JavaScript","Ruby"],["Silicon Valley", "London", "Las Vegas",
  9.     "Paris", "Sofia"], ["BMW", "Audi", "Lada","Skoda", "Opel"]]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement