var tableau = [0,1,2,3,4,5,6,7,8,9]; // votre tableau à mélanger
var tableau2 = [0,1,2,3,4,5,6,7,8,9]; // votre tableau à mélanger
tableau.sort(function() { return 0.5 - Math.random() });
tableau2.sort(function() { return 0.5 - Math.random() });

function addValue (value,pinpadSelected) {
	document.getElementById(pinpadSelected).value = document.getElementById(pinpadSelected).value + value;
}

function cleanPad (PinPadName) {
	document.getElementById(PinPadName).value = "";
	
}

// JavaScript Document
