Row of two elements that are not in an element together

Describe the problem:
To explain this problem, I'll give the structure of the site (simplified):

...
<ul class="members">
  <div id="id-1">
    A
  </div>
  <li class="member" rel="1">
    B
  </li>
  <div id="id-2">
    C
  </div>
  <li class="member" rel="2">
    D
  </li>
</ul>
...

So, as you see, there is a list, with in it two elements altering. After each div, a li follows and they belong together. What I would really like right now if for the text in the div to be matched with the text of the li in one row so that you get the following:

Div text Li text
A B
C D

Right now, by just selecting them both as text, and clicking 'multiple', I get:

Div text Li text
A
C
B
D

The website in question is https://v3.g.ladypopular.com/guild.php, which you probably won't be able to visit.

Does anyone know if this is possible?

This is a fairly common issue for those new to WS. It looks like you're scraping the correct data, but you did not create a selector to contain them (i.e. group them together). Also, you're probably using text selectors with the "Multiple" option checked.