Arrays & Array Methods (map, filter, reduce)

What is the purpose of the first filter operation?
const data = [1, null, 3, undefined, 5];
const result = data
  .filter(x => x != null)
  .map(x => x * 2)
  .filter(x => x > 5);
Next Question (12/20)