I have the following code:
function test1() {
  var app = SpreadsheetApp;
  var activesheet = app.getActiveSpreadsheet().getActiveSheet();
  for (var j = 2; j<= 3; j++) {
    
activesheet.getRange(j,2).setValue("C");
  }
}
This code will add the character "C" to the cell B2 and B3 which is great.
I am looking to get my code to add two "C" characters to 2 random cells from the first 30 cells of the B column.
Any help is much appreciated. Thank you.
 
     
     
    
