My goal is to turn this 5 by 3 table with named rows and columns into a Dataset. I found a method using association of associations in the document and I got stuck while preparing the keys and values to use for the association of associations. I would appreciate your help on how to convert the table below into a dataset.
Table
Related Document
Tried
keys=Outer[List,{B1,B2,B3,B4,B5},{{A1,A2,A3}},1]
data={{12,3,5},{3,6,11},{3,30,2},{9,14,7},{13,7,25}}
(* I got stuck while preparing the keys and values to use for the association of associations. Could I get help to make dataset of named rows and columns *)

