The irony is that people can come up with infinite analogies when trying to compare FP to other paradigms.
In this particular case once you figure out what does "abstracting over something" means, you could solve the riddle.
Abstracting over something would mean you hide the details of that something and provide abstractions to access that something so that to the outside world the details of that something are not visible.
Applying the above theory we would get that:
In OOP you would hide the details of data and provide abstractions (interfaces, classes etc) to access the data.
In FP you would hide the details of behavior and provide abstractions (modules i.e a set of functions) to access the behavior.