package main; import java.util.Collections; import java.util.List; public class Pioche { private List cartesPiochables; public CartePiochable piocher() { Collections.shuffle(cartesPiochables); return cartesPiochables.get(0); } }