Randomly select character values for each observationIn the example dataset - SASHELP.HEART, you want to create a new variable - Activity_status and assign one of three values of ('High', 'MEDIUM', 'LOW'), at random to each observation. You can achieve these using 2 methods. Method 1: Using an array data heart(drop=id _1-_3 keep=status sex bp_status chol_status activity_status); set sashelp.heart(obs=10); array _{3} $ [...]