R, 35 bytes
Thanks to ErikF for correcting a bug.
x= 1x=0 :{ 98+2} ;x[ c(!T T , T!T) ] ="E";x Defines x as the vector of integers from 10 to 100, then replaces all the even values with "E" and outputs x.
Previous, quite different version:
R, 42 bytes
for (i in 1:50) write(c(i*+2- 1, "E"),1 ) Includes a few tabs instead of spaces. Uses newlines as separators.
cat and print are unusable, but luckily write is OK. I had to resort to i*+2 -1 instead of i*2-1 to keep the alternation.