How to get array of coverpoints

In reply to itsmyturn:
SystemVerilog does not support arrays of covergroups embedded in classes. If that is your issue, you can define the covergroup outside the class, or you can create an array of classes with the covergroup embedded. Unfortunately, SystemVerilog covegroups were only designed to deal with integral types, not arrays.

It would really help to see the examples of what you are trying to cover.