Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. export const randomSound = () => {
  2. const audio = [
  3. new Audio("../audio/max_cat_1.mp3"),
  4. new Audio("../audio/max_cat_2.mp3"),
  5. new Audio("../audio/max_cat_3.mp3"),
  6. new Audio("../audio/max_cat_4.mp3")
  7. ];
  8.  
  9. const randomSound = Math.floor(Math.random() * (audio.length - 1));
  10. return audio[randomSound];
  11. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement