@roya1999
A struct is a data structure format in Solidity where variables of diverse data types can be bundled into one variable or a custom-made type.
_______________________
struct name{
 string theWord;
   uint theFigure;
   bool polar;
}
_______________________