How do you plan to solve it?
module jk_ff_enable ( input CLK, input EN, input J, input K, output reg Q ); // Write your code here always @(posedge CLK)begin if(EN==1'b1) Q<=(J&~Q)|(~K&Q); end endmodule