$(document).ready(function() {
$(`.string1`).on('click', function(){
$(this).next('.string2').toggle();
});
});
$(document).ready(function() {
$('.container-example').children().on('click', function(){
$(this).find('.string2').toggle();
});
});
step++; // 1. Тут
if (step + 1 == slider.length) {
step = 0;
} else {
step++; // 2. И тут
}