import java.util.List; import reactor.core.publisher.Flux; public class ReactiveCollectionExample { public static void main(String[] args) { List<Integer> numbers = List.of(1, 2, 3, 4, 5, 6, 7, 8, 9, 10); } }