[PHP] pobierz, plaintext $txt = "Ala ma kota ktory nie jest kotem lecz psem";$tmp = explode(" ", $txt);$ile_slow = 3;foreach(array_rand($tmp, $ile_slow) as $index) { echo $tmp[$index] . '<br/>';}[PHP] pobierz, plaintext