The algorithm below is used to simulate the results of rolling a standard 6-sided die 5 times. Consider the goal of determining whether the simulation resulted in more results which were odd than results which were even.
Step 1: Initialize the variables odd_counter and roll_counter to 0.
Step 2: A variable dice_roll is randomly assigned an integer value between 1 and 6 inclusive. If dice_roll has a value of 1, 3, or 5, then odd_counter is incremented by 1.
Step 3: Increment the value of roll_counter by 1.
Step 4: Repeat steps 2 and 3 until roll_counter equals 5.
```
Following the execution of the algorithm, which of the following expressions indicates that the simulation resulted in more results which were odd than results which were even?
a) `odd_counter > roll_counter / 2`
b) `odd_counter > roll_counter - odd_counter`
c) `odd_counter < roll_counter / 2`
d) `odd_counter < roll_counter - odd_counter`