Projects the elements of that sequence to new values.

// "MARCEL", "KLOUBERT"
Enumerable.create("Marcel", "Kloubert")
          .select('x => x.toUpperCase()');